How many stars have been drawn to create this? It’s hard to tell. You could try to zoom in and count, and then create a for loop, but a better and easier way to do this is to
keep on drawing smaller stars until the size of the star is as small as you want the inner star to be. This type of iteration is
indefinite: we don’t know how many stars are needed (so we don’t know how many times we need to loop), but we do know what our stopping condition should be (when the size of the next star would be smaller than the smallest star we want). Follow the steps below to create this star image.