0 / 60 seg.

How do you correctly create a Book object with the title "Java Basics" and price 19.99 in the following class?

class Book {
   String title;
   double price;
   Book(String title, double price) {
       this.title = title;
       this.price = price;
   }
}