Node.js - Worker Threads
What output will the following Node.js cluster code produce?
const cluster = require('cluster');
if (cluster.isPrimary) {
cluster.fork();
cluster.fork();
} else {
console.log(`Worker ${cluster.worker.id} is running`);
}