Elimination array

I want to import a list of items from an external file and insert the items into text object.

<?xml version="1.0" encoding="ISO-8859-1" ?> <fruits> <option1 texte="apple" /> <option2 texte="orange" /> <option3 texte="banana" /> <option4 texte="pear" /> </fruits>

I can import the items into variables fine, but I want them to be randomly placed with no repeats. Is there a way to do this?

Here is a way:
ReadRandomOrder.zip (2.83 KB)
As explained in the file, the algorithm takes random lines from the ordered list of items and copy them into another list that will be shuffled, then delete the random lines taken from the ordered list to take them only once :neutral_face: