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 error message means that the tests expected this string to be the output from your function:
'I Should Just Stop Tweeting, The Human Conciousness Must Raise Before I Speak My Juvenile Philosophy.'
But instead your function returned this string:
'How Can Mirrors Be Real If Our Eyes Aren't Real' to equal '
Think about how your function could work with any string, rather than just the one you've pasted into your code. If you're still unsure, try to define a simpler function on
String.prototype
and call it on any string to see how it works.You must read the log like this:
expected "Your answer" to equal "The correct answer"
. Have a look there to debug your code: https://docs.codewars.com/training/troubleshooting