diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 039342e321d..d1ca00ef8fb 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -4101,10 +4101,11 @@
"id": "cf1111c1c12feddfaeb7bdef",
"title": "Find Numbers with Regular Expressions",
"description": [
- "We can use special selectors in Regular Expressions to select a particular type of value.",
- "One such selector is the digit selector \\d which is used to retrieve the numbers in a string.",
- "It is used like this: /\\d/g.",
- "For numbers this is often written as /\\d+/g, where the + following the digit selector allows this regular expression to match one or more numbers.",
+ "We can use special selectors in Regular Expressions to select a particular type of value.",
+ "One such selector is the digit selector \\d which is used to retrieve one digit (e.g. numbers 0 to 9) in a string.",
+ "In JavaScript, it is used like this: /\\d/g.",
+ "Appending a plus sign (+) after the selector, e.g. /\\d+/g, allows this regular expression to match one or more digits.",
+ "The trailing g is short for 'global', which allows this regular expression to find all matches rather than stop at the first match.",
"
\\d selector to select the number of numbers in the string, allowing for the possibility of one or more digit."
],