break;
System.out
.println("Please enter a correct amount and bet (you \ncannot bet more than you have)");
} while (bet > amount);
BlackjackGame game = new BlackjackGame(2, new int[] { amount, amount },
new int[] { bet, bet });
game.play();
System.out.println();
System.out.println(game);
}