Create a function that takes an array and returns the types of values in the array.
arrayValuesTypes([1, 2, "null", []])
➞ ["integer", "integer", "string", "array"]
arrayValuesTypes(["214", true, false, 2, 2.15, [], null])
➞ ["string", "boolean", "boolean", "integer", "double", "array", "NULL"]
arrayValuesTypes([21.1, "float", "array", ["I am array"], null, true, 214])
➞ ["double", "string", "string", "array", "NULL", "boolean", "integer"]N/A