JavaScript Math.random() Test

Testing from min to max. Running iterations tests.
Parameters
M.randint()
Ad Hoc: Math.round(Math.random() * (max - min) + min)
note: Notice the values "fall-off" near the limits of the range.
Ceil: Math.ceil(Math.random() * (max - min + 1) + min - 1)
note: There is a minute possibility that this function will return (min-1). This is why floor is a better choice.

Based on work by Andrew Penry: Make JavaScript Math.random() useful, JavaScript Math.random() Test