import javax.swing.JOptionPane; public class BagelsTest { public static void main(String[] args) { // TO DO: Put the statements below into a loop that repeats as // long as the user wants to play another game Bagels game = new Bagels(); // create Bagels object game.play(); // play a game } }