diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json
index 7dda2fd78a..45d0cbad79 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -651,7 +651,7 @@
},
{
"id": "56533eb9ac21ba0edf2244af",
- "title": "Compound Assignment With +=",
+ "title": "Compound Assignment With Augmented Addition",
"description": [
"In programming, it is common to use assignments to modify the contents of a variable. Remember that everything to the right of the equals sign is evaluated first, so we can say:",
"myVar = myVar + 5;
",
@@ -702,7 +702,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b0",
- "title": "Compound Assignment With -=",
+ "title": "Compound Assignment With Augmented Subtraction",
"description": [
"Like the +=
operator, -=
subtracts a number from a variable.",
"myVar = myVar - 5;
",
@@ -752,7 +752,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b1",
- "title": "Compound Assignment With *=",
+ "title": "Compound Assignment With Augmented Multiplication",
"description": [
"The *=
operator multiplies a variable by a number.",
"myVar = myVar * 5;
",
@@ -802,7 +802,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b2",
- "title": "Compound Assignment With /=",
+ "title": "Compound Assignment With Augmented Division",
"description": [
"The /=
operator divides a variable by another number.",
"myVar = myVar / 5;
",