// shapes Practice // Franklin Abreu background(20); size(500 , 450); fill(255, 90, 130); rect(370, 200, 370, 200); textSize(16); fill(255, 255, 255); text("hello, my name is Franklin", 10, 30); fill(0, 102, 153); text("hello, are you listening?", 10, 60); fill(255, 0, 153); text("hello, okay I'm heading out now", 10, 90); fill(255, 180, 120); ellipse(150,200,150,150);