Help: Target a Specific Child of an Element Using jQuery

My instruction: Make the second child in each of your well elements bounce. You must target the children of element with the target class.

My code:

$(".well:nth-child(2)").addClass(“animated bounce”);

...

I do not clear the condition: The second element in your target elements should bounce.

It looks right to me, but obviously I am missing something. Any and all help would be very appreciated. Thank you in advance.

@P1xt
This answer was super useful. although i completed the test successfully wasn’t sure how it worked