Quiz: Fix the Long Word Finding Code
It turns out that there is a word in Alice in Wonderland with more than 30 characters. So you will need to change the comparison to > 60
In the if statement it would be better to check if (!found) instead of if (longWord.equals("")) Using the found variable would make the code easier to generalize if we were searching for large numbers instead of long Strings.