List of utility methods to do Random Int Number Get
Number.randomIntFromInterval = function(min,max) { return Math.floor(Math.random()*(max-min+1)+min); };