Write a function that will return the longest word in a sentence. In cases where more than one word is found, return the first one.
findLongest("A thing of beauty is a joy forever.") ➞ "forever"
findLongest("Forgetfulness is by all means powerless!") ➞ "forgetfulness"
findLongest("\"Strengths\" is the longest and most commonly used word that contains only a single vowel.") ➞ "strengths"