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 e95366e762..bdb0af0ed9 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -1851,7 +1851,7 @@
"id": "56533eb9ac21ba0edf2244bd",
"title": "Passing Values to Functions with Arguments",
"description": [
- "Functions can take input with parameters. Parameters are local variables that take on the value of the arguments which are passed into the function.",
+ "Parameters are variables that act as placeholders for the values that are to be input to a function when it is called. When a function is defined, it is typically defined along with one or more parameters. The actual values that are input (or \"passed\") into a function when it is called are known as arguments.",
"Here is a function with two parameters, param1
and param2
:",
"
function testFun(param1, param2) {", "Then we can call
console.log(param1, param2);
}
testFun
:",