Hey, since Ken's head is spinning, why not throw this into the mix:
This is modified from Dan's "Exploring Expressions in After Effects 6", halfway down the page wth the grid of random numbers and text:
http://www.creativecow.net/articles/ebberts_dan/ae6_exp/index2.html
numRows = 1;
numChars = 5;
holdFrames = 5;
seed = Math.floor(time/(holdFrames*thisComp.frameDuration));
seedRandom(seed,true);
s = "";
j = 0;
while(j < numRows){
k = 0;
while (k < numChars){
c = Math.floor(random(65,91));
s += String.fromCharCode(c);
k += 1;
}
s += "r";
j += 1;
}
s
-------------------
With the text tool, click to get that little flashing cursor thing, then twirl down the text to reveal "Source Text" and apply this expression to the source text.
The way it's set up will give 1 row of 5 numbers that holds for 5 frames, change to suit yourself.