print "Enter the number of the element you wish to view :"; chomp ($x=); @names=("Muriel","Gavin","Susanne","Sarah","Anna","Paul","Trish","Simon"); print "The first two elements are @names[0,1]\n"; print "The first three elements are @names[0..2]\n"; print "You requested element $x who is $names[$x-1]\n"; # starts at 0 print "The elements before and after are : @names[$x-2,$x]\n"; print "The first, second, third and fifth elements are @names[0..2,4]\n"; print "a) The last element is $names[$#names]\n"; # one way print "b) The last element is @names[-1]\n"; # different way