public void SelectQuestion()
    {
        game.AudioManager(audioNumberQuestion);

        if (number != 0 && number != 29)
        {
            buttonLeftQuestion.SetActive(true);
            buttonRightQuestion.SetActive(true);
        }
        else if (number == 0)
        {
            buttonLeftQuestion.SetActive(false);
            buttonRightQuestion.SetActive(true);
        }
        else if (number == 29)
        {
            buttonRightQuestion.SetActive(false);
            buttonLeftQuestion.SetActive(true);
        }
        game.numberQuestion = number;
        game.SetQuestion(game.testQuestions[number]);
        game.BlockQuestion(game.testQuestions[game.numberQuestion]);
        if (game.testQuestions[game.numberQuestion].answers4 != "")
        {
            game.SetTogles(4);
        }
        else
        {
            game.SetTogles(3);
        }
        startTest.ActiveRightLeftButtons();
        startTest.StartAllTest();
        end.SetActive(false);
    }