diff --git a/curriculum/challenges/english/09-information-security/information-security-with-helmetjs/install-and-require-helmet.english.md b/curriculum/challenges/english/09-information-security/information-security-with-helmetjs/install-and-require-helmet.english.md
index 129f5b3ba98..dbf927f3a11 100644
--- a/curriculum/challenges/english/09-information-security/information-security-with-helmetjs/install-and-require-helmet.english.md
+++ b/curriculum/challenges/english/09-information-security/information-security-with-helmetjs/install-and-require-helmet.english.md
@@ -14,7 +14,8 @@ Helmet helps you secure your Express apps by setting various HTTP headers.
## Instructions
-Install the Helmet package, then require it.
+
+Install Helmet version `3.21.3`, then require it.
## Tests
@@ -22,8 +23,8 @@ Install the Helmet package, then require it.
```yml
tests:
- - text: '"helmet" dependency should be in package.json'
- testString: getUserInput => $.get(getUserInput('url') + '/_api/package.json').then(data => { var packJson = JSON.parse(data); assert.property(packJson.dependencies, 'helmet'); }, xhr => { throw new Error(xhr.responseText); })
+ - text: 'helmet version 3.21.3 should be in package.json'
+ testString: getUserInput => $.get(getUserInput('url') + '/_api/package.json').then(data => { var packJson = JSON.parse(data); assert(packJson.dependencies.helmet === '3.21.3' ); }, xhr => { throw new Error(xhr.responseText); })
```