# Accessing the first and last elements of an array is easy with the first and last methodsx = [1, 2, 3]puts x.firstputs x.last