To check if a dictionary contains a certain key, we use the in keyword, like here with "name" in personal_data.
in
"name" in personal_data
Make sure to pick "name", followed by in, and finally personal_data.
"name"
personal_data