Array Ruby

x = []
# The array is empty
# Trying to address, say, x[5] results in nothing being returned. 
puts x[5]