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.
same issue,whats ur code
Please mark your post as having spoiler content when you post code, read this: https://docs.codewars.com/training/troubleshooting
Your first code reversed the order of the words in the string, and that's not what you should do. You should keep the positions intact, just reverse the letters of each word, look at the examples.
Hi,
There's no bug to fix (except in your code).
You reverse the order of the words in the string whereas you have to reverse the order of the letters of each word in the string.
Your code is wrong, try again.