Java programmers: storing an array in a jsp

I can’t remember how to store an array or a list in a jsp. I am using Struts 1.2.4 and need to store an array of strings in the page between requests. I would of course like to use the session for this, but I am not allowed to and the stuff I’ve tried isn’t working. I tried just using <html:hidden property=“myArrayOfStringsProperty”/> but that rendered out <input type=“hidden” name=“myArrayOfStringsProperty” value="[Ljava.lang.String@12ab34" />. Do any of you out there remember?

Thanks for your help,
Rob