Create a function that takes a multidimensional array and return the total count of numbers in that array.
countNumber([["", 17.2, 5, "innokodakademija"]]) ➞ 2
// 17.2 and 5.
countNumber([[[[[2, 14]]], 2, 3, 4]]) ➞ 5
// 2, 14, 2, 3 and 4.
countNumber([["balkot"]]) ➞ 0
Input may be array of numbers, strings and empty arrays.