Help for this page
$hash{'abacus'} = ([1,2,3,4,5]); $hash{'querty'} = ([6,7,8,9,10]);
print $hash{'abacus'}[0]; # Prints "1" print $hash{'qwerty'}[1]; # Prints "7"