qw(one two three four five six); print $array[$#array]; # prints "six" #### $j[$#j+1] = ("another"); #### push @j, "another";
## $j[$#j+1] = ("another"); ##
## push @j, "another";