Hi Jon, you're really close on the string concatenation. If you use on of the following:
aFileName & i
or
aFileName, i printString
you'll concatenate a number string onto the end of your string. (Depending on where this appears, it may also require literal brackets around it, for example:
{1 to: 4 collect: [:i | 'aFileName', i printString]}