PHP question about conditional statements #2

What will be the output of the following code?

$x = 5;
if ($x++ < 6) {
    echo 'Hi '.$x;
} else {
    echo 'Hello '.$x;
}
Sign in in order to be able to answer question.