Question #133

Author: admin
tags: Go  
package main

import "fmt"

func main() {
	names := []string{"Tom", "Bob"}
	append(names, "Alex", "Jack")
	fmt.Println(names) // ??
}
What will be printed in the line marked with ???
[Tom Bob Alex Jack]
[Tom Bob]
[Alex Jack]
[Alex Jack Tom Bob]
Rate the difficulty of the question:
easyhard