counts the number of syllables in a text line
static int countNumSyllables(String value) { return RegExp('[aouei]{1,2}').allMatches(value).length; }