I\'ve got a hash table:
$myHash = @{ \"key1\" = @{ \"Entry 1\" = \"one\" \"Entry 2\" = \"two\" }
You can also do this without a variable
@{ 'foo' = 222 'bar' = 333 'baz' = 444 'qux' = 555 } | % getEnumerator | % { $_.key $_.value }