diff --git a/challenges/01-front-end-development-certification/advanced-bonfires.json b/challenges/01-front-end-development-certification/advanced-bonfires.json
index 42b752a3d5..994802668f 100644
--- a/challenges/01-front-end-development-certification/advanced-bonfires.json
+++ b/challenges/01-front-end-development-certification/advanced-bonfires.json
@@ -265,8 +265,9 @@
"description": [
"Convert a date range consisting of two dates formatted as YYYY-MM-DD
into a more readable format.",
"The friendly display should use month names instead of numbers and ordinal dates instead of cardinal (1st
instead of 1
).",
- "Do not display information that is redundant or that can be inferred by the user: if the date range ends in less than a year from when it begins, do not display the ending year. If the range ends in the same month that it begins, do not display the ending year or month.",
- "Additionally, if the date range begins in the current year and ends within one year, the year should not be displayed at the beginning of the friendly range.",
+ "Do not display information that is redundant or that can be inferred by the user: if the date range ends in less than a year from when it begins, do not display the ending year.",
+ "Additionally, if the date range begins in the current year and ends within one year, the year should not be displayed at the beginning of the friendly range.",
+ "If the range ends in the same month that it begins, do not display the ending year or month.",
"Examples:",
"makeFriendlyDates([\"2016-07-01\", \"2016-07-04\"])
should return [\"July 1st\",\"4th\"]
",
"makeFriendlyDates([\"2016-07-01\", \"2018-07-04\"])
should return [\"July 1st, 2016\", \"July 4th, 2018\"]
.",