##
my @EMP_INFO;
print "What is your name \n";
my $input_name = ;
push @EMP_INFO, ;
## ##
my $input_name = ;
push @EMP_INFO, $input_name;
print "What is the location name\n";
my $input_location = ;
push @EMP_INFO, ; #correct this on your own
print "What is the age \n";
my $input_age = ;
push @EMP_INFO, ;
## ##
for ( my $x=0; $x < @EMP_INFO; $x++ ) {
# This will run 3 times....
print @EMP_INFO;
# This will print out your whole array. Three times
}