function randomInteger(min, max) { return Math.floor( Math.random() * (max - min) ) +'px'; } alert ( randomInteger(100, 300) );