Concats the items of a sequence with the items of another one.

// 0, 1, 2, 'PZ', 'TM', 'MK' Enumerable.create(0, 1, 2) .concat(['PZ', 'TM', 'MK']);