Here's my JS code. Console is showing
randomColor is not defined
var colors = ["#81ecec", "#0984e3", "#fab1a0", "#81ecec", "#0984e3", "#fab1a0"];
let button = document.querySelector("#button");
button.addEventListener("click", function() {
var changeColor = colors[Math.floor(Math.random() * colors.length)];
});
let content = document.querySelector("#container").style.background = changeColor;