var name = ['C1', 'C2', 'C3'][Math.floor(Math.random() * 3)]
var bgimg = ['C1bg.jpeg', 'C2bg.jpeg', 'C3bg.jpeg'][Math.floor(Math.random() * 3)]
var profile_image_url = ['C1logo.png', 'C2logo.png', 'C3logo.png'][Math.floor(Math.random() * 3)]
var description = ['C1 desc', 'C2 desc', 'C3 desc'][Math.floor(Math.random() * 3)]
Please mind the bad example. How would you make the variables be random with their other respective variables, so a C1 name would be with a C1 logo & desc rather than every part to be random?
Found How to get n no elements randomly from an array and Getting a random value from a JavaScript array, but couldn't find how to do so as a set of variables?