What happens when you run this error-first callback code?const fs = require('fs'); fs.readFile(__filename, 'utf8', (err) => { if (err) throw err; console.log('done'); console.log(data); });