Example: ```js const c0 = 0; const c1 = 1; module.exports = { c0, c1, }; ``` Incorrect result: ```js const c0 = 0; const c1 = 1; ``` Expected: ```js const c0 = 0; const c1 = 1; export { c0, c1, }; ```
Example:
Incorrect result:
Expected: