in reply to Shuffling a hash

for my $key ( shuffle( keys %hash ) ) { print "$key => $hash{$key}\n"; }

for example.

- tye