String setWordAt(int index, String value) { final w = words.toList(); w[index] = value; words = w; return text; }