diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 43171e3dcc6..f396987823e 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -1106,10 +1106,11 @@
},
{
"id": "bd7123c9c448eddfaeb5bdef",
- "title": "Check the Length Property of a String Variable",
+ "title": "Find Length of a String",
"description": [
- "Data structures have properties. For example, strings have a property called .length that will tell you how many characters are in the string.",
- "For example, if we created a variable var firstName = \"Charles\", we could find out how long the string \"Charles\" is by using the firstName.length property.",
+ "You can find the length of a String value by writing .length after the string variable or string literal.",
+ "\"Alan Peter\".length; // 10",
+ "For example, if we created a variable var firstName = \"Charles\", we could find out how long the string \"Charles\" is by using the firstName.length property.",
"
.length property to count the number of characters in the lastName variable and assign it to lastNameLength."
],