'use strict'; // paste your freeCodeCamp solutions in here //Object Oriented Programming: Define a Constructor Function function Dog(){ this.name = "Bob"; this.color = "red"; this.numLegs = 4; } //Object Oriented Programming: Use a Constructor to Create Objects function Dog() { this.name = "Rupert"; this.color = "brown"; this.numLegs = 4; } // Add your code below this line let hound = new Dog();