So during this task I struggled for awhile and this is what was wrong: I assigned the animals an owner and had this as the code: woman = cat.owner; woman = dog.owner; woman = fish.owner; then I downloaded the correct solution and it was changed to this: cat.owner = woman; dog.owner = woman; fish.owner = woman; why does my solution not work?