strings.Join()
strSlice := []string{"hello", "world"}
str := strings.Join(strSlice, " ")
fmt.Println(str) // Output: "hello world"