Create a function that checks if the given arguments are of the same type. Return True if they are and False if they're not.
compare_data(1, 6, 5, 3, 7, 9) ➞ True
compare_data(1, 6, 5, 3, "7", 9) ➞ False
compare_data([]) ➞ True
compare_data([1], (1)) ➞ False
True.