in reply to Pulling random elements from hash

If you don't have a lot of pairs in the hash, the easiest way is probably
my $random_card = (values %flash)[rand values %flash];

Makeshifts last the longest.