Back to Hashes The values in a hash are accessed using the key in braces: $baz{"4"} Is the value associated with the key "4": "str". $baz{"cat"} Also yields "str". Two keys can map to the same value. Hmmm. Can the same key map to two values?