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.
Should pass the following tests:
Test.assertEquals(maskify('4556364607935616'), '############5616');
Test.assertEquals(maskify('pi'), 'pi', 'pi returns pi');
Test.assertEquals(maskify('dog'), 'dog', 'dog returns dog');
Test.assertEquals(maskify('doge'), 'doge', 'doge returns doge');
Test.assertEquals(maskify('1'), '1', '1 returns 1');
Also, assertEquals is what you want to use here, not expect.
This comment is hidden because it contains spoiler information about the solution