I am trying to fill an array by loading it from a text file and then separating the text with line breaks to formulate an array however i am getting an error "Expected Expression"
var marrCountryList = [String]()
try! var text = String(contentsOfFile: "country", encoding: NSUTF8StringEncoding)
marrCountryList = text.componentsSeparatedByString("\n")