Im following instructions
However its not allowing me to continue
What do i do
Hey there, it looks like you’re adding the age
property directly to animal
.
Move the line animal['age'] = 5
so that it is below the closing bracket of the animal
object, like this:
let animal = {
name: 'Aleksandr Poochkin',
species: 'Dog'
}
animal['age'] = 5;