I've created a FreeMarker sequence in my template:
<#assign x = ["red", 16, "blue", "cyan"]>
How do I add additional values to the sequence?
You have to create a new sequence by concatenating x
and a sequence containing only the new element:
<#assign x = x + [ "green" ] />