const _ ={};
// Do not write or modify code below this line.
module.exports = _;
This is throwing an error when I first put in “node _.js”
module.exports = _;
^
ReferenceError: _ is not defined
at Object. (/home/ccuser/workspace/underscore-javascript-capstone/_.js:7:18)
I don’t understand this because it is the same code as in the get unstuck video. Am I missing something?