Q66 Single choice Mark for later Based on the output below, which Python code shows the value of the "upTime" key? A json_data = response.json()print(json_data['response'][0]['upTime']) B json_data = response.json()print(json_data[response][0][upTime]) C json_data = json.loads(response.text)print(json_data['response']['family']['upTime']) D json_data = response.json()print(json_data['response'][family]['upTime']) Correct answer