void SetNextQuestion()
    {
        canAnswer = true;
        Questions n = GetQuestion();

        SetAnswers(n);
        QuestionText.text = n.Question;
        n.resetTaken();

        GetEnemyAttack();
        clockTimer.resetTimer();
    }