// Use this for initialization
 void Start()
 {
     reader = GetComponent<CSVReader>();
     level = 0;
     wordBank = reader.getLine(wordBankCSV, level);
     wordChain = reader.getLine(wordChainCSV, level);
     delimiter = reader.getDelimiter();
     // get list of string (filled words) for word chain
     // get list of string (incomplete words) for word chain
     // get list of char's for wordBank
     // instantiate platforms and bridges
     // instantiate incomplete words on map
     // instantiate phonemes in word bank
     wordsToComplete = 3;
     makeStage (); //TODO!
 }