0
/ 20
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...
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 feedback will appear here when you check your answer.