Target Elements by Class Using jQuery I can't seem to get this one right

Tell us what’s happening:

Your code so far

<script>
  $(document).ready(function() {
    $("button").addClass("animated bounce");
  });
</script>

<!-- Only change code above this line. -->

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
      <h4>#left-well</h4>
      <div class="well" id="left-well">
        <button class="btn btn-default target" id="target1">#target1</button>
        <button class="btn btn-default target" id="target2">#target2</button>
        <button class="btn btn-default target" id="target3">#target3</button>
      </div>
    </div>
    <div class="col-xs-6">
      <h4>#right-well</h4>
      <div class="well" id="right-well">
        <button class="btn btn-default target" id="target4">#target4</button>
        <button class="btn btn-default target" id="target5">#target5</button>
        <button class="btn btn-default target" id="target6">#target6</button>
      </div>
    </div>
  </div>
</div>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Linux; Android 6.0.1; Z832 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/target-elements-by-class-using-jquery

I typed in $("#target2").appendto("#right-well"); but can’t find my bug am I missing a space somewhere like in append to

it did not move the target 2 button from the left-well to the right-well and I’m confused on if I’m typing the function properly.

sorry about that I messed up on my post, but figured it out, and corrected the problem. I was using appendto function to move target2 button from left well to the right well and made an error in my typing.

the challenge was use append to move elements with jquery.

sorry about the confusion