Sorting records randomly

So I'm prototyping a feed-type page for users to view posts from around the app, that loads content in a random order. It's not dated content, so serving sorted by timestamp doesn't make much sense. It also serves to add a degree of freshness, I think, to show random unviewed posts.
I know traditional SQL has a
SORT BY random
implementation, but was wondering if Convex had something similar out of the box to implement this feature.
Else I'm open to advice on how to pull off something like this.
Was this page helpful?