@food = ("apples", "pears", "eels");
@music = ("whistle", "flute");
$food[2]
returns eels. (Notice that the @ has changed to a $ because eels is a scalar.)