How do you access the value of a nested property within an object?
object.nestedProperty
object["nestedProperty"]
object.access("nestedProperty")
object.get("nestedProperty")