If you want to have things happen with random numeric values then you need to make use of the Math.random() method. For instance, let's say you want the timer delay to be some random value that it is at least some minimum value but no more than some maximum value. The code that would be...
var delay:Number = minimumDelay + Math.random()*(maximumDelay - minimumDelay);