class LibraryBookTester { public static void main(String[] args) { LibraryBook manual = new LibraryBook("The Chicago Manual of Style"); LibraryBook taxi = new LibraryBook("Taxi: The Harry Chapin Story"); taxi.borrow("David Liben-Nowell"); taxi.borrow("Bob Dylan"); System.out.println("The current borrower of " + taxi.getTitle() + " is " + taxi.getCurrentBorrower()); System.out.println("The current borrower of " + manual.getTitle() + " is " + manual.getCurrentBorrower()); } }