in reply to Sort: By keys, values, and their returning values.

To get the values sorted by key (your case 4), you probably need two steps:
map { $hash{$_}} sort { $a <=> $b } keys %hash;