Why the exercise isnt seeing my div element

why the exercise cant see the div element requested?


Your code so far

<div class="container-fluid">
  <div class="row">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  </div>
</div>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/create-a-bootstrap-row

It says create a div element with a class “row” below the h3 element, so your code should be as follows:

<div class="container-fluid">
<h3>JQuery Playground</h3>
<div class="row">
</div>
</div>

Hope it helps!