//Returns a random number between 0 and number - 1;
function getRandom(number) 
{
  return Math.floor(Math.random()*(number));
}
