you should read
perldoc perlvar
first, to understand how hashes work. As said before, they are not sorted in any way.
But you can print them out sorted or do something else with them in a sorted way.
This would cause a numerical order:
foreach (sort {$a <=> $b} keys %hash) {
# do something with $hash{$_} ...
}