How to randomise array that goes into a repeat

Let’s take a simple array

["Saab", "Volvo", "BMW"]

We put it into a repeat element client side, and display the values. So we get:

Saab
Volvo
BMW

How can I randomise this to make it different each time the browser refreshes?
So it becomes for example

BMW
Saab
Volvo

There is a .randomize() formatter you can use on the array

1 Like

Beautiful. Thanks again!

1 Like