mattlundstrom
6/1/2015 - 2:29 AM

random Int

function randomInt(min,max) {
  return Math.floor( min + Math.random() * (max - min + 1) )
}