public static function numberBetween(high:Number, low:Number):Number {
return Math.round(Math.random() * (high - low)) + low;
}
public static function numberBetween(high:Number, low:Number):Number {
return Math.round(Math.random() * high - low) + low;
}
?