Displaying the length of array from a specific index.

Displaying the length of array from a specific index.

Is it possible if I have an array;

myNumbers = new Array[0,1,2,3,4,5];
alert(myNumbers);

This displays 0,1,2,3,4,5;

But how can I display 1,2,3,4,5 from index location 1 to the length of the array;

myNumbers.indexOf(1, myNumbers.length)

Is this possible or do I have to loop through them?

Thanks.