Did you notice this involves sticking two jQuery functions together? This is called <code>function chaining</code> and it's a convenient way to get things done with jQuery.
Clone your <code>target5</code> element and append it to your <code>left-well</code>.
</section>
## Instructions
<sectionid='instructions'>
</section>
## Tests
<sectionid='tests'>
```yml
- text: Your <code>target5</code> element should be inside your <code>right-well</code>.
testString: 'assert($("#right-well").children("#target5").length > 0, ''Your <code>target5</code> element should be inside your <code>right-well</code>.'');'
testString: 'assert($("#left-well").children("#target5").length > 0, ''A copy of your <code>target5</code> element should also be inside your <code>left-well</code>.'');'