Hi, I just had a question regarding this task: I had an error when I was posting the solution like this: public class Solution { public static void main(String[] args) { Cat cat = new Cat(); cat.owner = woman; Dog dog = new Dog(); dog.owner = woman; Fish fish = new Fish(); fish.owner = woman; Woman woman = new Woman(); But when I arranged it like this it was correct. The part when I set the owner to woman only worked when it was placed AFTER the created objects. public class Solution { public static void main(String[] args) { Cat cat = new Cat(); Dog dog = new Dog(); Fish fish = new Fish(); Woman woman = new Woman(); cat.owner = woman; dog.owner = woman; fish.owner = woman; Can this code be ordered a different way? Or only in the second example? Is it possible to write it like this with a space in between the animals? I can't check anymore because I've already solved it. Cat cat = new Cat(); cat.owner = woman; Dog dog = new Dog(); dog.owner = woman; Fish fish = new Fish(); fish.owner = woman; Woman woman = new Woman(); Just wondering if I missed any details about placement of the lines... thanks.