Reverses the order of elements.

// 4, 3, 2, 1
Enumerable.create(1, 2, 3, 4)
          .reverse();