Error: Property 'childName' does not exist on type 'Teacher | Student | Parent' TypeScript: Hey, the return value from getPerson may not necessarily be a parent. It could be a student or a teacher, neither of which has the childName property. You: Okay, how can I safely access childName…