What am I doing wrong?
const die1 = Math.floor(Math.random() * 6) + 1;
const die2 = Math.floor(Math.random() * 6) + 1;
When I type die1 or die2 I get a number but it never changes unless I run the const for die1 or die2 again. I thought it was supposed to provide a random number whenever I type in die1 or die2. If that makes sense...