in reply to Sorting Hash

Since you're hash values are array refs, you need to access them as such:
my @sorted_keys = sort { $hash{$a}[1] <=> $hash{$b}[1] } keys %hash;
- danboo