Can someone tell me what's wrong with function, please?
PHP:
function rand(start, end) {
return Math.floor((Math.random()*end-start)+start+1);
}