function getRandom (number) {
          var thisResult = parseInt(Math.random()*(number-1));
          return thisResult;
                 }
