in reply to Populating a Hash: Can someone help me to understand?

Japhy's got it in Re: Populating a Hash: Can someone help me to understand?, but I figured you might want the reverse too:
my @values = values %hash; my @keys = keys %hash;
Not that I would do that (since I like to keep the data in one place, and values and keys are such nice hooks. But I tell you this in case you didn't know about them.