X451: Enhanced For Loop - More Than Five

Create an enhanced for loop that iterates to each String in the array words and returns true when there is at least one String with more than 5 characters (not including 5)

Examples:

biggerThanFive({"this", "is", "a", "test"}) ->  false
biggerThanFive({"this", "is", "a", "different", "test"}) -> true

Your Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.