<cffunction name="AlterArray" access="public" returntype="void" output="false" hint="Alter an array by setting first index."> <!--- Alter first index of first argument. ---> <cfset ARGUMENTS[ 1 ][ 1 ] = "999" /> <!--- Return out (but do NOT return array). ---> <cfreturn /> </cffunction>