What would be the output? If there is an error, select “ERRO…

What would be the output? If there is an error, select “ERROR” students = {    “Ann”: {“quiz”: 4, “hw”: 6},    “Ben”: {“quiz”: 7, “hw”: 3},    “Cara”: {“quiz”: 5, “hw”: 5}}total = 0for name in students:    total += students[name][“quiz”]print(total)