I was just wondering if there's a way to combine some of these statements. I believe there's a way to assign two things at once, I'm just having trouble remembering the syntax.
// Selects two cards for the player.
choosePlayerFirstNumber = r.nextInt(12);
choosePlayerFirstSuit = r.nextInt(3);
choosePlayerSecondNumber = r.nextInt(12);
choosePlayerSecondSuit = r.nextInt(3);
// Selects two cards for the dealer.
chooseDealerFirstNumber = r.nextInt(12);
chooseDealerFirstSuit = r.nextInt(3);
chooseDealerSecondNumber = r.nextInt(12);
chooseDealerSecondSuit = r.nextInt(3);
suits = new String[]{"Hearts", "Diamonds", "Clubs", "Spades"};
number = new String[]{"An Ace", "A 2", "A 3", "A 4", "A 6", "A 7", "An 8", "A 9", "A 10", "A Jack", "A Queen", "A King"};