Question: How to pointplot many lists at once?

I have a variable number of pointplots c[1] .. c[i] and i want to plot all in a single plot.

I tried display(c[k],k=1..i); or display(c[k]$k=1..i); but i got an error. Typing evey list like: display(c1,c2,c3,....); is not possible because i is variable. What can i do?

Please Wait...