Array Syntax : Like most programming languages Go also has arrays, but arrays are rarely used in Go. /* Declearing array here [5] is the limit of array, int is the type of elements and {elements} */ var arry = [5]int {1,2,3,4,5} /* Declearing array here [...] means array limit is not fixed…