Now we're several <code>div</code> elements deep on each column of our row. This is as deep as we'll need to go. Now we can add our <code>button</code> elements.
Nest three <code>button</code> elements within each of your <code>well</code><code>div</code> elements.
</section>
## Instructions
<sectionid='instructions'>
</section>
## Tests
<sectionid='tests'>
```yml
- text: Nest three <code>button</code> elements within each of your <code>div</code> elements with class <code>well</code>.
testString: 'assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, ''Nest three <code>button</code> elements within each of your <code>div</code> elements with class <code>well</code>.'');'
testString: 'assert(code.match(/<\/button>/g) && code.match(/<button/g)&&code.match(/<\/button>/g).length === code.match(/<button/g).length,''Makesureallyour<code>button</code> elements have closing tags.'');'