Create a function that accepts an array of numbers and returns the last number in the array.
getLastItem([1, 2, 3], 3) ➞ 3 getLastItem([0], 1) ➞ 0 getLastItem([-1, -3], 2) ➞ -3
return