(Errors from your JS or Pre-Processors code)
function random (from, to) {
return Math.floor((Math.random() * (to - from + 1)) + from);
}
var rand = random(50,60)
document.write(rand)