Node.js - Cluster Module
Identify the error in this cluster setup code:
const cluster = require('cluster');
if (cluster.isWorker) {
console.log('Master process running');
} else {
cluster.fork();
}