knoppix@Microknoppix:~$ perl -Mstrict -wE ' > my $refArr2 = [ > [ qw{ this is the first line } ], > [ qw{ Second one is here } ], > [ qw{ squint your eyes to see the third } ], > [ qw{ fourth is surely near } ], > ]; > > say $refArr2->[ 1 ]->[ 0 ]; > say qq{@{ $refArr2->[ 1 ] }};' Second Second one is here knoppix@Microknoppix:~$