Make 4 different colored balloons with strings coming out from the bottom. Use the line function to make the strings.
To make the little knots under the balloons, use the triangle function.
To make an oval, rather than a circle, you need to use the ellipse function.
The ellipse function has 4 arguments: ellipse (x, y, ____, ____) The x and y are the center of the ellipse and the last two numbers are how wide and how tall the ellipse is.
Here is the code for my teal oval below:
function draw() {
strokeWeight(3)
stroke (0,10,0)
fill(0,100,100)
ellipse(200, 300, 200, 300)
}