static List<String> firstLetterUpperArray(List<String> l) { return [for (var i in l) upperFirstLetter(i)]; }