<!DOCTYPE html>
<html>
<body>

<%

a=Split("Brown cow, White horse, Yellow chicken",",")
for each x in a
   response.write(x & "<br>")
next

%>


</body>
</html>