(SOLVED) Quiz says all answers are Incorrect

The answers and variables of the question are all part of ‘#dynamicDataset’ so getCurrentItem could definitely work. Thank you!

Now, assuming this does (I will have to check it later as Im on my way out the door for my 9 year old daughter’s bday party) how could i check said item against the user input. Or rather what way would i go about combining this:
$w.onReady( () => {
$w(“#dynamicDataset”).onReady( () => {
let itemObj = $w(“#dynamicDataset”).getCurrentItem();

and this:
export function button1_click() {
$w(“#input1”).onCustomValidation((value => {
if (value === “#answerC”)

My first hunch would be that item Obj is now defined so I could potentially do this:

if (value === “itemObj”)

although that doesn’t seem like it would be specific enough, and also I realized every answer was wrong because with what I had written, the ONLY correct answer was #answerC no matter what the question.

but what do i know

Thanks again so much for the guidance