About Page Shuffler
For Website Builders
If your website is built using a website builder such as Wordpress, Squarespace, Webflow, etc, this tool will generate a block of HTML that you can copy and paste into your website to randomize the team members on your about page.
For Custom Websites
If you're a developer building a custom website from scratch then the below code can be used to shuffle your team members before they're rendered to the page.
const members = [/* Your list of members */];
/* Shuffle the list */
for (let i = 0; i < members.length; i++) {
const j = Math.floor(Math.random() * (i + 1));
const temp = members[i];
members[i] = members[j];
members[j] = temp;
}