Javascript Math randomIntBetween(lo, hi) {
Math.randomIntBetween = function (lo, hi) { return Math.floor(Math.random() * hi) + lo; };