The following code is altered so that undefined is returned, rather than 99: ``` function shouldReturn99(event) { return 99; } ``` AMDClean adds a semicolon after the return, as follows: ``` ;(function() { function shouldReturn99(event) { return; 99; } }()); ```
The following code is altered so that undefined is returned, rather than 99:
AMDClean adds a semicolon after the return, as follows: