class Car {
let numWheels: Int
init(numWheels: Int) {
self.numWheels = numWheels
}//end constructor
}//end class
class FastCar: Car {
let topSpeed: Int
}//end class
why do I get an error saying "class 'FastCar' has no initializers"? I am an extreme beginner to the world of swift, and I feel like I just made a simple mistake but I went over it so many times I decided to come here.