class Book (Part 1) Close Book

  1. Define 1 argument constructor for title,
  2. Define toString method for id and title.
  3. Generate unique id for each object
  4. Create a public getter that has Book Count
  5. Define tester method that initializes at least 2 books, outputs id and title, and provides a count of books in library.
public class Book {
    String title;
    public Book (String title){
    }
    public 
}