I try to create json array
type Data struct {
Veggies Vegetables
array array } type array map[string] []int
func main(){
vegetables := Vegetables{}
vegetables["Carrots"] = 21
n:= array{}
n ["array"]= [] int {1, 1 ,1}
d := Data{ vegetables,n}
json.MarshalIndent(d, "", " ")}
please explain why not see the array?