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