\\
) escape character:
```js
// Correct use of same quotes:
const allSameQuotes = 'I\'ve had a perfectly wonderful evening, but this wasn\'t it.';
```
# --instructions--
Fix the string so it either uses different quotes for the `href` value, or escape the existing ones. Keep the double quote marks around the entire string.
# --hints--
Your code should fix the quotes around the `href` value "#Home" by either changing or escaping them.
```js
assert(code.match(//g));
```
Your code should keep the double quotes around the entire string.
```js
assert(code.match(/".*?<\/p>";/g)); ``` # --seed-- ## --seed-contents-- ```js let innerHtml = "
Click here to return home
"; console.log(innerHtml); ``` # --solutions-- ```js let innerHtml = "Click here to return home
"; console.log(innerHtml); ```