请选择以下程序打印结果:
package main
import "fmt"
func main() {
a := [3]int{5, 78, 8}
var b [5]int
b = a
fmt.Println(b)
}