Reading this file fails. What does the err object tell you here?const fs = require('fs'); fs.readFile('./missing.txt', 'utf8', (err, data) => { if (err) console.log(err.code); });