alert("A")
<script> function rand (min, max) { return min + Math.floor( (1 + (max - min))*Math.random()); } var x = rand(5, 10); alert(x); </script>