in reply to Shuffling a hash
for my $key ( shuffle( keys %hash ) ) { print "$key => $hash{$key}\n"; } [download]
for example.
- tye