以下のコードを実行したときの結果はどうなりますか? ```python scores = {"math": 85, "english": 78} scores["science"] = 92 print(len(scores)) ```