Hey Dan,
Thats exactly what I wanted! Now the only thing i need to do is pretty much make the expression you made plus a couple of the ones i already had and make on expression that takes those display in rows for about 100 rows randomly.
EX:
Hi Bye Dog Cat House Bye Cat Hi Dog House etc..
125 332 221 548 456 684 489 655 156 221 118 etc…
546 784 125 432 156 585 477 513 456 546 987 etc…
Bye Dog Hi House Cat Dog House Bye Hi etc…
Is there a way to give like just part of an expression a name so for example:
A=
words = [“Hi”,”Bye”,”Dog”,”Cat”,”House”];
seedRandom(index,true);
idx = Math.floor(random(words.length));
str = “”;
for (i = 1; i <= 100; i++){
str += words[idx] + " ";
idx = (idx + Math.floor(random(words.length-1)) + 1)%words.length;
}
str
B=
list = 10;
seedRandom(index, 1)
stat = "";
for (i=0; i