Problem 29. Change the background of the page to yellow, red or any other color based on user input through prompt.

let input = prompt("Enter color");
document.body.style.background = input;