Time limit: 15:00
const fs = require('fs');
fs.writeFile('example.txt', 'Hello World', (err) => {
if (err) throw err;
fs.readFile('example.txt', 'utf8', (err, data) => {
if (err) throw err;
console.log(data);
});
});
What is the output of the above code if 'example.txt' does not already exist?