View Subcategory
Define an empty list
Assign the variable
"list" to a list with no elements
fantom
list := [,]
Define a static list
Define the list
[One, Two, Three, Four, Five]
fantom
list := ["One", "Two", "Three", "Four", "Five"]
