I only know <cfset myList = "1,2,3"> to declare a list, but
I need to declare a list with unknown size, and able to add elements
to it.

I tried the following, but it produces error "ListNew is undefined."

<cfset myList2 = ListNew(1)>
<cfset myList2[1] = "1">

thanks!!