From http://www.petefreitag.com/cheatsheets/coldfusion/cfscript/
cars = ["Ford","Dodge"]; for (car in cars) { WriteOutput(car); } //OUTPUTS FordDodge