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 77182b95c6..0e31e16e7c 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2970,8 +2970,8 @@
"id": "5664820f61c48e80c9fa476c",
"title": "Golf Code",
"description": [
- "In the game of golf each hole has a par for the average number of strokes needed to sink the ball. Depending on how far above or below par
your strokes
are, there is a different nickname.",
- "Your function will be passed a par
and strokes
. Return strings according to this table (based on order of priority - top (highest) to bottom (lowest)):",
+ "In the game of golf each hole has a par
for the average number of strokes
needed to sink the ball. Depending on how far above or below par
your strokes
are, there is a different nickname.",
+ "Your function will be passed par
and strokes
arguments. Return the correct string according to this table which lists the strokes in order of priority; top (highest) to bottom (lowest):",
"
Strokes | Return |
---|---|
1 | \"Hole-in-one!\" |
<= par - 2 | \"Eagle\" |
par - 1 | \"Birdie\" |
par | \"Par\" |
par + 1 | \"Bogey\" |
par + 2 | \"Double Bogey\" |
>= par + 3 | \"Go Home!\" |
par
and strokes
will always be numeric and positive."
],