function t6(a, b) {
return Math.floor(Math.random() * (a - b + 1)) + b
}
function t7() {
return `rgb(${t6(0, 255)}, ${t6(0, 255)}, ${t6(0, 255)})`
}
document.querySelector('.button').onclick = function () {
document.querySelector('.out').style.background = t7();
}