Write the output you get when you call the __dirname object in the following code.
/
├── src
│ └── scripts
│ ├── module.js
│ └── index.js
├── public
│ └── index.html
├── node_modules
├── package.json
├── package-lock.json
└── .gitignore
// module.js
console.log(__dirname);