Node.js - Cluster Module
Given this code snippet, what will be logged when run as a master process?
const cluster = require('cluster');
if (cluster.isMaster) {
console.log('Master process running');
} else {
console.log('Worker process running');
}