The thing is, if you know which keys you want to process,
and you want them in a specific order, there is no reason to
use
keys in the first place. Just give the keys in an array,
as others have suggested, and index into the hash using them.
keys is useful for getting all the keys in a hash, precisely
so that you don't have to know their values in advance.
--ZZamboni