Jquery: Not Has Class

Jquery: Not Has Class

I've got a jquery selector I'm trying to get done and since I'm somewhat new to jquery I'm stumped. Essentially. I'm trying to get a div within divs with the class "card" that do not have the class of "correct" and then select the first one out of the list.

$("div .card:not(.correct):nth-child(1) .question ").css('display', 'none');


After spending quite a while trying to get this to work I am now opening it up to anyone to give me a hand.