Best football players of 2021

Report a typo

Below you will see the map nominees with some of the ⚽️ Ballon d'Or 2021 ⚽️ favorite candidates.

Can you implement the required code to print the length of the nominees map?

Write a program in Go
package main

import "fmt"

func main() {
// do not change the contents of the nominees map!
nominees := map[string]string {
"Lionel Messi": "Paris Sant-Germain",
"Robert Lewandowski": "Bayern Munich",
"Jorginho": "Chelsea",
"Cristiano Ronaldo": "Manchester United",
"Karim Benzema": "Real Madrid",
}

fmt.Println(?) // print the length of the nominees map here
}
___

Create a free account to access the full topic