string array to string golang

package main

import (
    "fmt"
    "strings"
)

func main() {
    stringArray := []string{"one", "two", "three", "four", "five"}

    // Step 1: Use strings.Join to concatenate the strings in the array
    concatenatedString := strings.Join(stringArray, "")

    // Step 2: Print the concatenated string
    fmt.Println(concatenatedString)
}