diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md
index c15aab692f..6d6eedfb94 100644
--- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md
+++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md
@@ -3,8 +3,16 @@ title: Add Keywords to Your package.json
---
## Add Keywords to Your package.json
-This is a stub. Help our community expand it.
+## Hint 1
+* Your package.json should contain the property `keywords`.
-This quick style guide will help ensure your pull request gets accepted.
+## Hint 2
+* `keywords` should be an array.
-
+## Hint 3
+* One of the values in `keywords` should be `freecodecamp`.
+
+## Solution:
+```js
+"keywords": [ "freecodecamp", "microservice", "guide" ]
+```