The great thing with inheritance is that we can reuse functionality from a parent class in a child class. In your second version you redo the work of the parent constructor in your child class.
In this example we only have those three lines in the constructor, but imagine the parent constructor contains 50 lines of code and we rewrite them in our child class instead of using super() with some parameters.