What am I doing wrong here?

I am in the using jQuery to Modify the Entire Page module, and I am not sure what I am doing wrong. What am I doing wrong?:

Directions:
Add the classes animated and hinge to your body element.

Submitted:
$(“body”).addClass(“animated”, “hinge”);

Classes should be in one string

$("body").addClass("animated hinge");
1 Like

Thank you! That helped! :slight_smile: