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.
This comment is hidden because it contains spoiler information about the solution
Test Results:
Test Passed: Value == 'Bart, Lisa, Maggie, Homer & Marge'
Test Passed: Value == 'Bart, Lisa & Maggie'
Test Passed: Value == 'Bart & Lisa'
Test Passed: Value == 'Bart'
Test Passed: Value == ''
However when I attempt:
Must work with many names - Expected: 'Bart, Lisa, Maggie, Homer & Marge', instead got: 'Bart, Lisa, Maggie, Homer & Marge, '
Must work with many names - Expected: 'Bart, Lisa & Maggie', instead got: 'Bart, Lisa & Maggie, '
Must work with two names - Expected: 'Bart & Lisa', instead got: 'Bart & Lisa, '
Wrong output for a single name - Expected: 'Bart', instead got: 'Bart, '
Must work with no names - Expected: '', instead got: ', '
How did the tests work but 0/45 additional tests not work (especially ones that are the same)? When I run in code editor I get back the correct results I received in the test cases.