what is difference of these in go lang
array := make(map[string]int)
array2 := map[string]int
i am printing both variables like `fmt.Println(array, array2)` then i cannot any differences beetween these
is the only difference make function have second parameter that we can define number of instance ?