function GetRandom() {
 var RanNumber = Math.floor(Math.random() * 5);
 return RanNumber + 1;
}
