You have an object called userInfo which contains keys called name and birthdate. How do you destructure the name into the variable firstName?
const { name: { firstName } } = userInfo
const { birthdate, ...firstName } = userInfo
const { name, firstName } = userInfo
const { name: firstName } = userInfo