in reply to Re^2: How do I access only certain elements of a multidimensional array?
in thread How do I access only certain elements of a multidimensional array?

I could think of several ways, but this seemed the easiest to understand and write. :)
foreach my $aref (@shapes[2 .. $#shapes]) { print join(" ", @$aref[2 .. $#$aref]), "\n"; }
Output:
c d e f g h i j k Radio
Hope this is helpful.