Hello everyone I have an arraylist showing up as [MCA, MCB, COMM, DMISA] on the jsp.
Im calling it on the jsp:
<td>${bean.CodesNames}</td>
In the bean the getter is:
public void setCodesNames(ArrayList<String> CodesNames)
{
    this.CodesNames = CodesNames;
}
How can I display this without the brackets?
 
     
     
     
     
     
    