Node.js - Child Processes
Identify the error in this Node.js code using
execFile:const { execFile } = require('child_process');
execFile('node', ['-v'], (err, stdout) => {
if (err) throw err;
console.log(stdout);
console.error(stderr);
});