public class BingoRunner { public static void main(String[] args) { /** create and execute a new BingoController that starts the game invoke run() include the Thank you for playing once the game exits (GOODBYEMESSAGE) */ BingoController controller = new BingoController(); controller.run(); } }