0 / 60 seg.

What will be the output of this code?

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