Could you please let me know how to create a quiz where the user must input 2 correct answers.
I have made face-mix images and I want the player to enter both names.
Can this be done?
Cheers
Mike
How about making 2 different questions, and answers need to be given in alphabetical order?
Hi Mike,
you can do this with a quiz and solution input. You must define the correct answer with regular expressions: https://en.wikipedia.org/wiki/Regular_expression
An regular expression can look like this:
^dog cat|dog and cat$
In this case the following answers are correct: dog cat OR dog and cat
Best regards
Daniel
Thanks for the replies!
I did read through the Regular_Expression wiki but couldn’t work it out.
I will try
dog cat|cat dog
to ensure either name can be entered first.