Random sort a collection

I am trying to display a static collection in a random order on Weweb. So far, I am able to sort it randomly only if I use a dynamic collection instead of a static collection. (Xano output random)
But when I changed it to a static collection, they won’t display randomly since the data are synced already.
Are there ways in Weweb to randomize a collection? I can only find a sort by ascending or descending options within sort.

You need to use a dynamic collection, no way around that, that’s how static collections work. One thing you could do, is prerender the pages with a static collection and do references to those pages from dynamic collection with an url instead of a page navigation.

Thanks a lot for replying~~