in reply to Pulling random elements from hash

my @values = values %hash; my $rand_value = $values[rand @values];

Mark