Quick queastion about random number

I am just making a random number generator and I have got the random numbers going using this script.


onClipEvent (load) {
 go = true;
}
onClipEvent (enterFrame) {
 if (go) {
  display = Math.round(Math.random()*9);
 }
}

The only problem is that the numbers are way to fast I’d like them to be 1/2 if not 3/4 the speed that they are. how can I do that?