In this task, you will try another useful method: ReadAt() from io package. ReadAt() implements the io.ReaderAt interface.
Take a look at the ReadAt() method definition below, where off represents the offset (which you may recall from the Seek() method):
func (r *Reader) ReadAt(b []byte, off int64) (n int, err error)
Please, write the missing code so that the program will output the string: "money".