Help for this page
my @array = qw(one two three four five); print "@array[2,3]\n"; # prints three four
my %hash = ( 1 => 'one', ... print "@hash{'2', '3'}\n"; # prints two three