diff --git a/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md b/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md
index c56177b5cf7..8d3612ac165 100644
--- a/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md
+++ b/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md
@@ -10,10 +10,10 @@ dashedName: how-to-use-package-json-the-core-of-any-node-js-project-or-npm-packa
Working on these challenges will involve you writing your code using one of the following methods:
-- Clone this GitHub repo and complete these challenges locally.
+- Clone this GitHub repo and complete these challenges locally, using this guide to set up Node.js, npm, and run the backend projects on your machine.
- Use a site builder of your choice to complete the project. Be sure to incorporate all the files from our GitHub repo.
-The `package.json` file is the center of any Node.js project or npm package. It stores information about your project. It consists of a single JSON object where information is stored in key-value pairs. There are only two required fields; `name` and `version`, but it’s good practice to provide additional information.
+The `package.json` file is the center of any Node.js project or npm package. It stores information about your project. It consists of a single JSON object where information is stored in key-value pairs. There are only two required fields; `name` and `version`, but it's good practice to provide additional information.
You can create the `package.json` file from the terminal using the `npm init` command. This will run a guided setup. Using `npm init` with the `-y` flag will generate the file without having it ask any questions, `npm init -y`.
@@ -29,7 +29,7 @@ One of the most common pieces of information in this file is the `author` field.
Add your name as the `author` of the project in the `package.json` file.
-**Note:** Remember that you’re writing JSON, so all field names must use double-quotes (") and be separated with a comma (,).
+**Note:** Remember that you're writing JSON, so all field names must use double-quotes (") and be separated with a comma (,).
# --hints--