# Given an array of ints length 3, return a new array with the elements in reverse order, # so {1, 2, 3} becomes {3, 2, 1}.
# Given an array of ints, return a new array length 2 containing the first and last elements from the original array. # The original array will be length 1 or more.