function generateRandomColor() { const r = Math.floor(Math.random() * 256); // 0 ~ 255 const g = Math.floor(Math.random() * 256); // 0 ~ 255 const b = Math.floor(Math.random() * 256); // 0 ~ 255 return `rgb(${r},${g},${b})`; }