public void SetNewStatement(string responseIn)
 {
     string resNameIn = "Choice_01";
     Response pickedResponse = new Response();
     if (resNameIn == "Choice_01"){
         pickedResponse = response01;
     }
     int newStatementId = pickedResponse.GetNextStatement();
     SetCurrentStatment(newStatementId);
     SetCurrentResponses();
 }