diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index a0428c71b6..0b8b997666 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -713,7 +713,7 @@
"The remainder operator %
gives the remainder of the division of two numbers.",
"Example",
"
5 % 2 = 1 because", - "Usage
Math.floor(5 / 2) = 2 (Quotient)
2 * 2 = 4
5 - 4 = 1 (Remainder)
2
.",
+ "Usage2
.",
"17 % 2 = 1 (17 is Odd)", "Note
48 % 2 = 0 (48 is Even)