I would like for the div to change to a random color generated by my makeColor
variable every time the button is clicked. Thanks in advance.
var makeColor ="#" + Math.floor((Math.random() * 999) + 1);
$("button").click(function(){
$("div").css("background",makeColor);
});