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 644311608d..e50a2657bf 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -1316,7 +1316,7 @@
"description": [
"Sometimes you will need to build a string, Mad Libs style. By using the concatenation operator (+
), you can insert one or more variables into a string you're building.",
"
myName
to a string equal to your name and build myStr
with myName
between the strings \"My name is \"
and \" and I am swell!\"
"
+ "Set myName
to a string equal to your name and build myStr
with myName
between the strings \"My name is \"
and \" and I am well!\"
"
],
"releasedOn": "January 1, 2016",
"challengeSeed": [
@@ -1347,7 +1347,7 @@
"})();"
],
"solutions": [
- "var myName = \"Bob\";\nvar myStr = \"My name is \" + myName + \" and I am swell!\";"
+ "var myName = \"Bob\";\nvar myStr = \"My name is \" + myName + \" and I am well!\";"
],
"tests": [
"assert(typeof myName !== 'undefined' && myName.length > 2, 'message: myName
should be set to a string at least 3 characters long');",
@@ -1361,7 +1361,7 @@
"description": [
"A veces necesitarás construir una cadena, al estilo Mad Libs. Mediante el uso del operador concatenación (+
), puedes insertar una o más variables dentro de una cadena que estés construyendo.",
"myName
a una cadena igual a tu nombre y construye myStr
con myName
entre las cadenas \"My name is \"
and \" and I am swell!\"
"
+ "Asigna myName
a una cadena igual a tu nombre y construye myStr
con myName
entre las cadenas \"My name is \"
and \" and I am well!\"
"
]
}
}