Given a list of integers, determine if each of the integers in the list is strictly bigger than the last. If so, return True, otherwise return False. The list will always be at least of length 2.
For example:
exponentialListCheck([1, 2, 3]) → TrueexponentialListCheck([2, 1, 5, 10, 9]) → FalseexponentialListCheck([10, 288, 300, 319]) → TrueexponentialListCheck([1, 1, 3]) → False