Consider the following ancestry dictionary: ancestry = { …
Consider the following ancestry dictionary: ancestry = { “name”: “John”, “age”: 28, “born”: “Sheboygan”, “parent”: { “name”: “Dean”, “age”: 53, “born”: “Milwaukee”, “parent”: { “name”: “Mike”, “age”: 74, “born”: “Racine”, “parent”: { “name”: “Bill”, “age”: 96, “born”: “La Crosse” } } }} Which line of code prints “Bill”