private void ReturnButton_Click(object sender, EventArgs e)
 {
     //The scores are returned to the previous form in order to be refreshed in the scores table
     CompletedQuiz?.Invoke(this, Student, SQuiz, storedQuestions, storedQuizQuestions, completedQuestion);
     this.Close();
 }