It’s popular enough to be a Google-suggested search, but not popular enough to have a good result yet.
If you want to slice to the end of a Ruby array, and/or get the end of a Ruby array, what you want is
arr[1, -1] # -1 means all the rest of the array
A nice code example, I shall include this into my code. Thanks for the tip!
You have reversed the params: it should be arr[-1, 1]