# Enter the output of the following: use strict; use warnings; my %hash = ("Zero","0","One","1","Two","2"); my @array = keys %hash; print "$array[0]\n"; __END__