The following example uses an array to make it possible ot iterate over strings. Each string is assigned to the variable word and printed (using wscript.echo).
option explicit
dim word
for each word in array("foo", "bar", "baz")
wscript.echo(word)
next