Implement Elements within your Bootstrap Wells

Tell us what’s happening:
Nest three button elements within each of your div elements with class well.
You should have a total of 6 button elements.

Your code so far

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

<button>
        </button>
      </div>
    </div>
    <div class="col-xs-6">
      <div class="well">

<button>
        </button>

      </div>
    </div>
  </div>
</div>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/add-elements-within-your-bootstrap-wells

Hi beejay,

In the challenge they ask to put 3 buttons in each well. In your code there is only 1 in each.