14.4 Random Items and Shuffling
A call to the shuffled() method of an array object will return a new version of the array with the item ordering randomly shuffled, for example:
let shuffledTrees = treeArray.shuffled()
To access an array item at random, simply make a call to the randomElement() method:
let randomTree = treeArray.randomElement()