Select all the code snippets below that properly implement the fastFood map as a set declaration.
a)
fastFood := map[string]bool{
"🍔": true,
"🍟": true,
"🥤": true,
}
b)
fastFood := map[string]string{
"🍔": "true",
"🍟": "true",
"🥤": "true",
}
c)
fastFood := map[string]float64{
"🍔": 2.99
"🍟": 1.99
"🥤": 1.49
}
d)
fastFood := map[string]struct{}{
"🍔": struct{}{},
"🍟": struct{}{},
"🥤": struct{}{},
}