﻿
/*
   New Perspectives on JavaScript
   Tutorial 2
   Case Problem 2

   Author: 
   Date:   

   Function List:
   randInt(size)
      Used to generate a random integer in the range (size)

*/

function randInt(size) {
return Math.floor(1 + size*Math.random());
}
