What will be the output of the following code snippet? map scores; scores["Diana"] = 86; scores["Mark"] = 80; if (scores["Fred"] < 0) { cout << "Error "; } for (auto it = scores.begin(); it != scores.end(); it++) { cout << " " << it->first << ":" << it->second; }