Any way to create a randomized stack list?

More specificaly, how can I avoid repetition while getting a random number from a list 10 times.

Thanks

This works in Classic. It should work in principal in X as well

https://puravidaapps.com/snippets.php#2removerandom

In a somewhat similar way tried this:

But it still picks duplicates, any thoughts?

The list logic removes picked items from the list

You are not removing the picked items.

Doesn’t the “get and remove” block do that?

I think nesting the two together is causing a problem.

In addition your list starts with 0 but you are doing the remove starting from 1.

Do a random check, get the value, then remove the value.

I’ll give it a try, thanks