in reply to Sorting keys of hash table by values

You guys missed
@sortedKeys = sort { -( $h{$a} <=> $h{$b} ) } keys %h;
:)