What will be the output of the code below?
package main
import "fmt"
func main() {
var greeting = "hello"
// Are we allowed to concatenate strings in variable declarations?
var helloWorld = greeting + " " + "World"
helloWorld += "!"
fmt.Println(helloWorld)
}