Yep. You should probably assign a letter to each asteroid as it's created. Add a variable to the asteroid class (either a 'char' or 'String') to hold the letter which that Asteroid represents. Add a parameter to the asteroid constructor, of the same type, so that the letter for an asteroid can be specified when the asteroid is created. Then you can create a whole series of asteroids such as:
addObject(new Asteroid("i"), 100, 100);
addObject(new Asteroid("c"), 100, 100);
addObject(new Asteroid("o"), 100, 100);
addObject(new Asteroid("n"), 100, 100);
addObject(new Asteroid("o"), 100, 100);
// etc
Of course you could do that programmatically by writing code to iterate through the characters in the string "iconoclast" and create an asteroid for each.

