<!--- Create a raw string value. ---> <cfset data = "Simple Value" /> <!--- Convert the data variable to an array using a ternary operator. ---> <cfset data = (true ? [ data ] : []) /> <!--- Output the new data variable. ---> <cfdump var="#data#" label="Data ? [ data ]" />