What is the result of receiving from a channel that has been closed and fully drained?ch := make(chan int, 1) ch <- 7 close(ch) a := <-ch b := <-ch