Arrays with Ranges

Accessing members of a Ruby array object using a range:

everything but the first thing

arr[1..-1]

or, simpler

arr[1..]