Remove the colon :
from the second statement as you are assigning a new value to existing variable.
myArray = [...]int{11,12,14}
colon :
is used when you perform the short declaration and assignment for the first time as you are doing in your first statement i.e. myArray :=[...]int{12,14,26}
.