How to get ellipses to overlap?

Is there a way to draw concentric circles within the draw method so that they overlap on top of each other?

@YoloSwag Like this.


displayMode(FULLSCREEN)

function setup()
end

function draw()
    background(0)
    noFill()
    stroke(255)
    strokeWidth(3)
    for z=WIDTH,10,-20 do
        ellipse(WIDTH/2,HEIGHT/2,z)
    end
end

That’s perfect! Thanks @dave1707!