Consider the following program code: %hash = (small => 8oz, medium => 16oz, large => 32oz); @keys = sort(keys(%hash)); for (\$i = 0; \$i < 3; \$i++) { print(\$hash{\$keys[\$i]}\n); } What is the result of executing this program code?
Reveal answer
Fill a bubble to check yourself