From the Department of Why Wasn't I Doing This Before:
Sometimes I create arrays with map. Usually after I do that I like to access elements of the array. Most times I forget which order I put things in the array. Every time until now I forget about code comments.
I put the index of the value under the bit that creates it.
my @bits = map { $hash->{$_}{value} } qw( Domain Path Name Value Expires ); # 0 1 2 3 4