Is there a way to set a default variable as a random number within a specific range (such as between 1 and 100)?
var defaults = { start_at_index: getRandomNumberInRange(1, 100),
It's necessary for the default value not to be zero, but rather a randomized number between 1 and 100.
Any suggestions would be greatly appreciated!