Can you spot the mistake in this code snippet?

person isn't an instance of Person but of StringWe can't access steps from outside of its classperson needs to be capitalized

That's it! The person variable isn't an instance of Person but of String. We could access from outside of Person and person shouldn't be capitalized.

Yikes! The person variable isn't an instance of Person but of String. We could access from outside of Person and person shouldn't be capitalized.