$Results{"Bill"} = 1000;
$Results{"Bob"} = "forfeit";
$Results{"Betty"} = 6000;
@myArray = values(%Results);
print "Values in hash are @myArray"\n";
==> Values in hash are 1000 forfeit 6000
print "Values in hash are " . values(%Results) . "\n"; ==> Values in hash are 3