class AuctionTester { public static void main(String[] args) { AuctionLot harryChapinAlbum = new AuctionLot("greatest collection of music ever"); AuctionLot pezDispenser = new AuctionLot(); // needed to teach CS127 String hello = "hello world"; //harryChapinAlbum.initializeLot("greatest collection of music ever"); System.out.println(harryChapinAlbum.getDescription()); System.out.println(harryChapinAlbum.getHighBid()); harryChapinAlbum.makeBid(2.00, "The gentleman in the second row"); harryChapinAlbum.makeBid(3.00, "The foolish guy at the computer"); harryChapinAlbum.makeBid(2.50, "Front row"); System.out.println("Highest bid = " + harryChapinAlbum.getHighBid() + " which was made by " + harryChapinAlbum.getHighBidder()); System.out.println("PEZ: " + pezDispenser.getDescription()); } }