Creates a new sequence from a list of items.

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

// empty
Enumerable.create();