Create a subclass called Laptop that inherits the turnOn() method from Computer.
Laptop
turnOn()
Computer
Make sure to type class Laptop extends Computer.
class Laptop extends Computer