Just a quick hack for shuffling generic lists in C# like this one: List<T> list You may use proper solutions like those in this StackOverflow thread, if you need it for something serious, or simply do this: list.Sort ((x, y) => Random.value < 0.5f ? -1 : 1) which simply defines a… Shuffling C# generic listsRead more