if I have the following arrays:
alice = ["phone", "telegraph"]
bob = ["paper", "book" ]
carol = ["photograph", "painting"]
and this hash:
test_hash = { "alice" => "employee 1", "bob" => "employee 2", "carol" => "employee 3" }
how would I iterate through the hash and use the key value to refer back to the array so that I can pull, for example, the fact that alice has the phone?