code hs 5.9.6 answers ---------------5.9.6 // CODEHS ------------------------ var x = getWidth()/2; var y = getHeight()/2; var RADIUS = 200; function start() { var circle = new Circle(RADIUS); circle.setPosition(x,y); circle.setColor(Color.red); add(circle); while(RADIUS > 0){ RADIUS -= 40; code hs 5.9.6 answers How to get it? code hs 5.9.6 answers circle = new Circle(RADIUS); circle.setPosition(x,y); circle.setColor(Color.black); add(circle); RADIUS -= 60; circle = new Circle(RADIUS); circle.setPosition(x,y); circle.setColor(Color.red); add(circle); code hs 5.9.6 answers How to get it for free? code hs 5.9.6 answers RADIUS -= 40; circle = new Circle(RADIUS); circle.setPosition(x,y); circle.setColor(Color.black); add(circle); RADIUS -= -60; circle = new Circle(RADIUS); circle.setPosition(x,y); code hs 5.9.6 answers PasteShr code hs 5.9.6 answers circle.setColor(Color.red); add(circle); RADIUS -= -20; circle = new Circle(RADIUS); circle.setPosition(x,y); circle.setColor(Color.red); add(circle); } } code hs 5.9.6 answers PasteShr code hs 5.9.6 answers code hs 5.9.6 answers