Accessing Elements
q1 = %w[ January February March ] #you can access the first element of the array, element 0, with the 0 index: q1[0] # => January # Access the last element of the array, element 2, with: q1[2] # => March