Ideally, the run command should accept args in place of process.argv. ```js function run() { ... if (arguments.length > 0) var args = arguments; else var [, , ...args] = process.argv; ```