I’m trying to implement a maze task using github.com/vboyce/Ibex-with-Maze. The examples I found floating around use two sentences with the same length in number of words. However, I want to pass an array to this module so chunks instead of individual words are displayed. I tried creating a CSV in the following format
Sentence;Distractor
["word1", "word2", "word3"];["dist1", "dist2", "dist3"]
but that didn’t work. The maze module seems to support arrays, according to its documentation, but what is the correct format?
Thanks in advance!