in reply to Array lookup

my %hash; @hash {@first_array} = (); delete @hash {@second_array}; print "first array contains elements not in second array" if %hash;

Abigail