<!DOCTYPE html>
<html>
<body>

<%

a=Array(5,10,15,20)
for each x in a
   response.write(x & "<br>")
next

%>
 

</body>
</html>