.reverse() Reverses the elements in an array. let backwards = [1, 2, 3, 4, 5].reverse(); // [5, 4, 3, 2, 1]