my %hash = ( cat => 7, dog => 3, cow => 9, ); my @array = ("dog","cat","cow"); my @ordered_values = @hash{@array}; # (3, 7, 9)