The error occurs because the paragraph (p) element does not contain the exact required text.
FreeCodeCamp checks the content character by character, so even a small difference will cause the test to fail.
Common reasons for this error include:
-
Using the em dash symbol (
—) instead of the HTML entity— -
Adding a space after
—(it must be—Quincy, not— Quincy) -
Missing the period (
.) at the end of the sentence -
Extra spaces or line breaks inside the
<p>element -
Placing the
<p>element inside the<blockquote>instead of below it
