<!--- Create a raw string value. ---> <cfset data = "Simple Value" /> <!--- Convert the data variable to an array using implicit array notation. ---> <cfset data = [ data ] /> <!--- Output the new data variable. ---> <cfdump var="#data#" label="Data[ data ]" />