go remove whitespace from string

package main

import (
    "fmt"
    "strings"
)

func main() {
    str := "  Hello,   World!  "
    str = strings.ReplaceAll(str, " ", "")
    fmt.Println(str)
}