Tested in the online repl: Input: ```js console.log(11000); console.log(110000); ``` Expected output: ```js console.log(11e3),console.log(11e4); ``` Actual output: ```js console.log(11000),console.log(1.1e5); ```
Tested in the online repl:
Input:
Expected output:
Actual output: