How do you select a random hash key?
For my Flash+Perl card game I'm trying to pick a random card from a hash where keys are: "6 spades", "6 clubs", etc.:
my $card;
my $i = 0;
for $card (keys %{$user->{HAND}}) {
last if rand(++$i) < 1;
}
delete $user->{HAND}->{$card};
print "random card: $card\n";
and wonder if it's correct at all and if there is a better way

$cardin theforloop is "implicitly local to the loop and regains its former value upon exiting the loop". That is, the$cardin your print statement is a different variable than the$cardin theforloop. – mob Dec 17 '11 at 20:44