function generateRandomRGBColor(): void {
const red: number = Math.floor(Math.random() * 256);
const green: number = Math.floor(Math.random() * 256);
const blue: number = Math.floor(Math.random() * 256);
console.log(`Random RGB Color: rgb(${red}, ${green}, ${blue})`);
}
generateRandomRGBColor();
/*
run:
"Random RGB Color: rgb(108, 213, 8)"
*/