Create a function that takes as a parameter an array of "stringified" numbers and returns an array of numbers.
Example:
["1", "3", "3.6"] ➞ [1, 3, 3.6]to_number_array(["9.4", "4.2"]) ➞ [9.4, 4.2]
to_number_array(["21", "23"]) ➞ [21, 23]
to_number_array(["9.5", "8.8"]) ➞ [9.5, 8.8]Some inputs are floats.