Help for this page
my @c = ( 22, 44, 55 ); my @d = ( 'yy', 'tt' ); # or my @d = qw(yy tt);
$b[0] = \@c; # hold a reference to @c. $b[1] = \@d;
my @e = @{$b[1]};