Specifically, is it possible to remove a specific sprite that has both created and added to a group by a for loop
Maybe while it's touching an ungrouped sprite
an example of said type of thing just in case
`var coolgroup = createGroup();
for (var i = 0; i < 3; i++) {
var thing = createSprite(200,200);
coolgroup.add(thing);
}`