in reply to Printing items from an Hash using an Array

You can do something like this:
while (my ($k, $v) = each %hash) { print "$k: $v\n" }
Where $k is the key and $v is the value.

Igor 'izut' Sutton
your code, your rules.