The following sketch shows a gray screen: ```java void setup() { size(400, 400, P2D); } void draw() { background(255, 0, 0); ellipse(200, 200, 100, 50); println("draw"); if (frameCount == 2) noLoop(); } ``` If noLoop() is called on frame 3 or higher, then the output is correct.