use strict; use warnings; sub getHash { my %hash; for(my $i=0;$i<4;$i++) { my $key = ; chomp($key); my $val = ; chomp($val); $hash{$key} = $val; } }