Hi DontKnowJack,
I am not sure with your program but I can help you how to display Array in JSP! It is quite a bit trivial! But you should use scriptlet to do so like this...
<%
for( int counter = 0; counter < yourArray.length; counter++ )
{
%>
Display Array counter number <%= counter %> is <%= yourArray [ counter ] %>
<%
}
%>
I hope my answer can help you!
From wizz