Challenge: Escape the Regex!
You've managed to escape 5 regex patterns, but the regex master has created an even nastier one. Can you outsmart it?
Escape the Pattern: /a*b+/c/
Match any string that contains 1 or more 'a's followed by 1 or more 'b's and ends with a 'c'. Can you find a string that fits this pattern?
Example solution: abbccc
Or maybe you want to try the next level?