my $counter; for (@array) { if ($hash{$_} eq "correct_value") { $counter++ print "$_ Success\n"; last; } } print 'We have a match.', $/ if $counter;