Consider the following class hierarchy:
```
class Animal {
void makeSound() {
System.out.println("Some sound");
}
}
class Dog extends Animal {
void makeSound() {
System.out.println("Bark");
}
}
class Cat extends Animal {
void makeSound() {
System.out.println("Meow");
}
}
```
If we create an object like this: `Animal animal = new Dog();`, what will be printed when we call `animal.makeSound()`?