Try this code:
<!doctype html>
<html>
<head>
<style>
#box {
height: 100px;
width: 100px;
border-radius: 10px;
background-color: #4535AA;
}
… // access div element with id box
let box = document.getElementById("box");
// change background color
box.style.backgroundColor = "#FFB643";
// show alert
alert("Color changed");
}
</script>
</body>
</html>
Let me know if you face any issues.