So I have an array: String[] courses = ["Math", "Science", "History", "Band"] and this line of code is in my JSP file.
<c:forEach var="course" items="${form.coursesSelected}">
<tr>
<td>
<input type="hidden" name="courseRemove" value="<c:out value="${course}"/>" />
<c:out value="${course}"/>
</td>
<td>
<c:out value="${form.employmentStatusPrice}"/>
</td>
<td>
<input type="submit" value="REMOVE" />
</td>
</tr>
</c:forEach>
