I need to connect a list of words with corresponding instructions, but I want the order of the words to be random. For example, if I have pairs like (cat, forget) and (dog, remember), the word should always be followed by its matching instruction, but the actual order of the words should be mixed up. So, for instance, it could be presented as (dog, remember) (turtle, forget) (cat, remember) as long as each word is correctly paired with its instruction.
What would be the best way to organize this? Should I use an array of arrays where each sub-array represents a pair like (dog, remember)?
Appreciate any guidance on this!