Given the block of code below, answer the following question:
```java
class Person {
// constructor not shown
public void printGreeting() {
System.out.println("Hello! How are you?");
}
}
class Student extends Person {
// constructor not shown
}
```
Question:
Consider the code above. If we create an object of the `Student` class and call the `printGreeting()` method on that object, what will be outputted?