$hello[1] = 'hi'; #### my @first = qw/one two three/; my @second = qw/four five six/; for $value(@first){ $second[++$#second] = $value; } #### $second[3] = $value; #### push(@second, @first);
## my @first = qw/one two three/; my @second = qw/four five six/; for $value(@first){ $second[++$#second] = $value; } ##
## $second[3] = $value; ##
## push(@second, @first);