0 / 60 seg.

What will be the output of this program?

ch := make(chan int)
close(ch)
val := <-ch
fmt.Println(val)