use List::Util qw[ shuffle ];
my %verb = (
'To Move' => 'Zegi',
'To Break' => 'Loga',
'To Think' => 'Fzetra',
);
This would print the hash in order -
foreach my $verb (shuffle keys %verb)
{
print $verb;
}
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
"Memory, processor, disk in that order on the hardware side. Algorithm, algorithm, algorithm on the code side." - tachyon