Help with custom multistep form

Hey Ahmad, thanks for your reply!

Not to worry about the end state, I figured out a workaround.

So, to clarify - I thought the answers were supposed to be recorded automatically with Wix forms, but you’re saying that if I add the answers to the code, then they’ll be recorded in the submission table? I just want them to show up in the submissions.

No answers are right or wrong, so would you suggest just listing all the possible choices here?:

let record = {
    firstQ: {
        answer chosen: 0, 1, 2,
    }
}
        
let answer = {
    $w('#radioGroup1').selectedIndex;
        record.firstQ.answer = answer;
}

Or something?

Thanks again!