Language Basics Ruby

a = [ 1, 'cat', 3.14 ]   # array with three elements
  a[0]
  # set the third element
  a[2] = nil
  # dump out the array
  p a