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 8aceff6e3b..8579d6cac2 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -28,10 +28,11 @@
"id": "bd7123c9c441eddfaeb5bdef",
"title": "Understand Boolean Values",
"description": [
- "In computer science, data structures
are things that hold data. JavaScript has seven of these. For example, the Number
data structure holds numbers.",
- "Let's learn about the most basic data structure of all: the Boolean
. Booleans can only hold the value of either true or false. They are basically little on-off switches.",
+ "Computers are not inherently smart. Hence, javascript developers made it easy for us to represent data to computer. Data
is anything that is meaningful to the computer.",
+ "In computer science, Data types
are things that represent various types of data. JavaScript has seven data types which are Undefined
, Null
, Boolean
, String
, Symbol
, Number
, and Object
. For example, the Number
data type represents numbers.",
+ "Now let's learn about the most basic one: the Boolean
data type. Booleans represent a true
or false
value. They are basically little on-off switches.",
"
welcomeToBooleans
function so that it will return true
instead of false
when the run button is clicked."
+ "Modify the welcomeToBooleans
function so that it returns true
instead of false
when the run button is clicked."
],
"tests": [
"assert(typeof(welcomeToBooleans()) === 'boolean', 'message: The welcomeToBooleans()
function should return a boolean (true/false) value.');",