03-09-2021, 09:14 PM
No worries, Cloe! I think we have it figured out. The issue is that your choice responses are entered as lists of lists rather than just lists. Your choices in your code should be listed without the brackets around each number. For instance, for Response1/8
{
"type": "choice",
"choices": [1,2,3,4,5,6,7,8],
"key_mapping": [1,2,3,4,5,6,7,8],
"target": [1]
}
Give this a shot with your other response options, and let me know how it goes!
{
"type": "choice",
"choices": [1,2,3,4,5,6,7,8],
"key_mapping": [1,2,3,4,5,6,7,8],
"target": [1]
}
Give this a shot with your other response options, and let me know how it goes!