public Object next() {
   Book book = bookShelf.getBookAt(index);
   index++;
   return book;
 }