diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 348cd4b189..7dc90a4af2 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -889,7 +889,7 @@
"title": "Generate Random Whole Numbers with JavaScript",
"difficulty":"9.9828",
"description":[
- "It's great that we can create random decimal numbers, but it's even more useful if we lot more useful to generate a random whole number.",
+ "It's great that we can create random decimal numbers, but it's even more useful if we use it to generate a random whole number.",
"To achieve this we can multiply the random number by ten and use the Math.floor()
to convert the decimal number to a whole number",
"This technique gives us a whole number between zero and nine",
"Example:",
diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json
index ab0d2c12a3..e5e376317d 100644
--- a/seed/challenges/html5-and-css.json
+++ b/seed/challenges/html5-and-css.json
@@ -749,7 +749,7 @@
"title": "Add Images to your Website",
"difficulty": 1.17,
"description": [
- "You can add images to your website by using the img
element, and point to an specific image's URL using the src
attribute.",
+ "You can add images to your website by using the img
element, and point to a specific image's URL using the src
attribute.",
"An example of this would be <img src=\"www.your-image-source.com/your-image.jpg\">
. Note that in most cases, img
elements are self-closing.",
"Try it with this image: https://bit.ly/fcc-relaxing-cat
."
],