in 4.1.1.1 'node:process' is an alternative to the global variable process: ``` import {argv} from 'node:process'; console.log(process.argv); ``` to be ``` import {argv} from 'node:process'; console.log(argv); ```