The require keyword in Node.js is used to load modules, ready to be used in your code.
If you want to load the helmet package, which has already installed for you in npm, you simply require it with the require keyword.
In this case, just add a line of code below the existing lines (above) and use the variable name ‘helmet’ to require it (exactly as express has been required).