private bool QuestionAdder(Question question)
 {
     try
     {
         questions.Add(question);
         JSONProcess.Write(jsonPath, questions);
         return(true);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
         return(false);
     }
 }