Hi Jay,
I don't think that Andy's code will do what you want. What you want to do is create a program that makes a new list of 100 random integers, then augment it to the original list. (putting it in a mathbox is still the right idea). What you want is the following:
In mathbox: (assuming your graphing list is called randlist. Also, I made the number of ints a variable so you can change it easily)
Randlist:=augment(randlist, newrandlist(100))
In a function:
Define newrandlist(size) :=
Func
Local i, newlist
Newlist:={ }
For i, 1, size
Newlist:=augment(newlist, {randInt()})
Endfor
Return newlist
Endfunc
Now, this may not be 100% because I'm doing this from memory, but it's close. You could also generate the new list like this: newlist:=seq(randint(),i,1,size) but I wanted to show you something more basic/fundamental since you haven't done much programming.
Good luck.
--Eric