let colors = ['blue','red','orange','purple','gray','yellow']
let randomColors = [];
I would like push 3 random colors from the the colors array into randomColors. I dont want any of the colors to be repeated.
Seems simple, but ive spent a few hours not being able to make it not repeat itself. Thanks !