// Start is called before the first frame update
 void Start()
 {
     possibleSentences = OrganizeSentences.ReadFromCSV(file);
     Debug.Log(possibleSentences.Count);
 }
 public void LoadTextFile(TextAsset loadFile)
 {
     possibleSentences = OrganizeSentences.ReadFromCSV(loadFile);
 }