Reverses the order of all elements contained in the array
var hello = new Array ("Hello", "World");hello.Reverse();// prints World, Helloprint(hello);