diff --git a/seed/challenges/04-data-visualization/data-visualization-with-d3.json b/seed/challenges/04-data-visualization/data-visualization-with-d3.json
index a0fc921e60..c6a7762db5 100644
--- a/seed/challenges/04-data-visualization/data-visualization-with-d3.json
+++ b/seed/challenges/04-data-visualization/data-visualization-with-d3.json
@@ -1541,7 +1541,7 @@
"The padding may be confusing at first. Picture the x-axis as a horizontal line from 0 to 500 (the width value for the SVG canvas). Including the padding in the range()
method forces the plot to start at 30 along that line (instead of 0), and end at 470 (instead of 500).",
"
yScale
variable to create a linear y-axis scale. The domain should start at zero and go to the maximum y value in the set. The range should use the SVG height (h
) and include padding.",
- "Note