Relational snowman not solving

let snowmanX = 50
let size = 4

let headRadius = size * 2
let bodyRadius = size * 4
let baseRadius = size * 6

let baseY = 95 - baseRadius
let bodyY = baseY - baseRadius - bodyRadius
let headY = bodyY - bodyRadius - headRadius

// Head (top, smallest)
circle(snowmanX, headY, headRadius, “white”)

// Body (middle)
circle(snowmanX, bodyY, bodyRadius, “white”)

// Base (bottom, biggest)
circle(snowmanX, baseY, baseRadius, “white”)

could someone tell me how to solve this? ive been stuck on this for a long time

Please use codeblocks (“preformatted text”) and not block quotes for code :wink:

The instructions say,

  • The radius of the head is size * 2, the body’s radius is size * 3, and the base’s radius is size * 4.
  • The bottom of the base circle sits size from the bottom.