!#/usr/local/bin/perl my @EMP_INFO; print "What is your name \n"; my $input_name = ; push @EMP_INFO, ; print "What is the location name\n"; my $input_location = ; push @EMP_INFO, ; print "What is the age \n"; my $input_age = ; push @EMP_INFO, ; for ( my $x=0; $x < @EMP_INFO; $x++ ) { print @EMP_INFO; }