You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function go(){
return Math.round(Math.random() * 255);
}
function getColor(){
var r = go();
var g = go();
var b = go();
return "rgb(" + r + "," + g + "," + b + ")"
}
//example of return: "rgb(175, 255, 250)"