its my code and I wanna decrease width of div any time click on button with random number
let humanDiv = document.getElementById("humanDiv");
let monsterDiv = document.getElementById("monsterDiv");
function attBtn() {
let numRandom = Math.floor(Math.random() * 40) + 1;
humanDiv.style.width -= numRandom + 'px';
monsterDiv.style.width -= numRandom + 'px';
}