Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
The kyu is given by a moderator, not by the author.
This comment is hidden because it contains spoiler information about the solution
I agree that I should have specified that an empty array is equal to 0 in this problem. I have added it to the notes section of the description. Thanks for the feedback.
Re-read the error and it has been decided that the instructions are not clear on this. It GOT the string starting with owi... so that is your code. but it expected a string starting with wlw...owi...
The string you are trying to get is the FIRST longest consecutive string. to pass that test you want it to be index[0] + index[1].
In the test index[0] = 11 characters while index[2] has only 10.
I hope this helps!