Reference more than one elements in an array at the same time
@a1 = (1, 2, 3, 4, 5, 6); @a2 = @a1[0, 1, 2, 3]; print join (", ", @a2);