You need to implement the io.Closer interface. Below you can take a look at its definition:
type Closer interface {
Close() error
}
The task is simple — you need to implement a method Close() for the FunnyBox struct. ThisClose() method should print the string "Bey!" and return a nil error.