Combine Strings into one.
String concatStrings(Iterable<String> l) { String result = ''; for (String s in l) { result += s; } return result; }