Create a function that takes a list lst and returns the types of values (data types) in a new list.
list_values_types([1, 10]) ➞ [Fixnum, Fixnum]
list_values_types([["hello", 1], 10]) ➞ [Array, Fixnum]
list_values_types(["shashwat", 10, 90]) ➞ [String, Fixnum, Fixnum]Fixnum instead of Integer.