Text box inside a For loop
New to JMP and scripting.I was wondering why New window("Report",
For( i = 1, i <= 3, i++,
Text box("hello");
);
);
doesn't return 3 instances of text in a new window.How would I go about outputing text in a window thats nested inside a for loop?