Returns the elements of that sequence as new array.

// [1, 2, 3, 4]
Enumerable.create(1, 2, 3, 4)
          .toArray();