Create Texture Trying by Adding a Subtle Pattern as a Background Image

Tell us what’s happening:
I’m not sure why but the program is still evaluating this as incorrect event though
it shows up perfectly in the output. It’s just supposed to put the background with the
url onto the body.

Your code so far


<style>
  body {
    background: url(https://i.imgur.com/MJAkxbh.png);
  }
</style>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-texture-by-adding-a-subtle-pattern-as-a-background-image

It is valid syntax, but the tests are expecting the url string to be wrapped in either single or double quotes.

Thank you so much for fixing the issue!