How do i get characters to ask each other questions

label questions

CHARACTER1 (animation)
What do you want to know?

choice
“Question 1”{
#script
goto finish_questions
} “Question 2”{
#script
goto finish_questions
} “Question 3”{
#script
goto finish_questions
}

label finish_questions

NARRATOR
Have you finished asking questions?

choice
“Yes, I asked all the questions.” {
continue
} “No, I want to ask something else.” {
goto questions
}

hope this helps