push @array, [$first, $last, $address, $city, $zip]; #### while() { push @array, [$first, $last, $address, $city, $zip]; } foreach (@array){ print "@$_\n"; } #### push @array, $first, $last, $address, $city, $zip;
## while() { push @array, [$first, $last, $address, $city, $zip]; } foreach (@array){ print "@$_\n"; } ##
## push @array, $first, $last, $address, $city, $zip;