Why does the second while loop while (numberOfTries < 2) cancel both while loops? It runs perfect if there is no incorrect answer. But let's say I select 4 problems to be made, and I am only on the first problem. I give the incorrect answer 2 times so the program should say Incorrect two times and then give me a new question because while (numberOfTries < 2) should force it to break from that loop. But it doesn't, it just quits the whole thing. I know it has to be a logic issue, so what am I missing? 
import java.util.Random;
import java.util.Scanner;
public class Howthe {
    public static void main(String[] args) {
        // Open Scanner
        Scanner scan = new Scanner(System.in);
        // Ask user to choose number of problems to be made. 
        // Can only choose 4, 9, or 16
        System.out.print("Choose a number of problems to be made (4, 9, 16): ");
        int userChoiceOfProblems = scan.nextInt();
        // Ask user to choose a number between 0 and 12
        System.out.print("\nChoose a number between 0 and 12: ");
        int userNumberBetween0and12 = scan.nextInt();
        // Ask user to choose between add/sub or multiply/divide
        System.out.println("\nChoose to:"
                + "\n0: add/sub  your chosen number"
                + " and the randomly generated number: "
                + "\n1: multiply/divide your chosen number"
                + " and the randomly generated number: ");
        int userArithmeticChoice = scan.nextInt();
        int counter = 0;
        String equationString;
        int equationAnswer;
        int numberOfAnswersRight = 0; 
        int numberOfTries = 0;
        int userAnswerToQuestion;
        if (userArithmeticChoice == 0){
            while (counter < userChoiceOfProblems){
                // Create random number to decide if add or sub used.
                // add is equal to 0 and sub is equal to 1 
                Random rand = new Random();
                int randomNumberBetween0and1 = rand.nextInt(1) + 0;
                // Create random number that is multiplied by userNumberBetween0and12
                int randomNumberBetween0and12 = rand.nextInt(12) + 0;
                // Add and increase counter by 1
                if (randomNumberBetween0and1 == 0){
                    // If numberOfTries is more than 2, then display answer. 
                    while (numberOfTries < 2){
                        // Compute the right answer (addition). 
                        equationAnswer = userNumberBetween0and12 + randomNumberBetween0and12;
                        // Produce string of equation, then display string (addition).
                        equationString = userNumberBetween0and12 + " + "
                                + randomNumberBetween0and12;
                        System.out.println(equationString);
                        userAnswerToQuestion = scan.nextInt();
                        // If answer is right, increase numberOfAnswersRight.
                        if (userAnswerToQuestion == equationAnswer){
                            numberOfAnswersRight++;
                            System.out.println("Correct!");
                            break;
                        }
                        // If answer is wrong, continue loop and increase numberOfTries
                        else if (userAnswerToQuestion != equationAnswer){
                            numberOfTries++;
                            System.out.println("Incorrect");    
                        }   
                    } // end of while (numberOfTries < 2 && !quit)
                    counter++;
                }
            } System.out.println("Yout got " + numberOfAnswersRight + " problem(s) right!");
        }
    }
}
 
    