diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json
index 1768076c7a..02a91ad0ce 100644
--- a/challenges/01-front-end-development-certification/intermediate-bonfires.json
+++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json
@@ -821,6 +821,7 @@
"assert.deepEqual(typeof smallestCommons([1, 5]), 'number', 'message: smallestCommons([1, 5])
should return a number.');",
"assert.deepEqual(smallestCommons([1, 5]), 60, 'message: smallestCommons([1, 5])
should return 60.');",
"assert.deepEqual(smallestCommons([5, 1]), 60, 'message: smallestCommons([5, 1])
should return 60.');",
+ "assert.deepEqual(smallestCommons([2, 10]), 2520, 'message: smallestCommons([2, 10])
should return 2520.');",
"assert.deepEqual(smallestCommons([1, 13]), 360360, 'message: smallestCommons([1, 13])
should return 360360.');",
"assert.deepEqual(smallestCommons([23, 18]), 6056820, 'message: smallestCommons([23, 18])
should return 6056820.');"
],