Text List

I need to make a list of every number from 6100 to 6200, i need it to look something like:
6100
6101
6102
ect…

What you’re looking for doesn’t appear to be a list of numbers, but rather a string of every number in the range separated by returns. That could be accomplished with…

set theOutput to ""
repeat with i from 6100 to 6200
	set theOutput to (theOutput & i & return)
end repeat
return (theOutput as string)

j

what if i only has the numbers 1 4 6 8 in it? all the possible convos?