From: Matthew Moss [mailto:matt / moss.name] 
# > p l    # => [1,2,3,4,5]
# >
# > # I want '[4,5]'
# >
# > # Is that method in Array?
# 
# l = l[3..-1]
# 

also, 

  array.last(2)