A class named Clock has two instance variables: hours (type int) and isTicking (type boolean) Write a constructor that takes a reference to an existing Clock object as a parameter and copies that object's instance variables to the object being created Your task: Write a Clock constructor that makes this possible. Just write this constructor-don't write the whole class or any code outside of the class! 1-ublic ClockOt this.hours hours 3 this.isTicking - isTicking; 75 characters 5000 maximum Previous Submissions xCode Analysis: Logic Error(s) Remarks and Hints: The constructor should take one parameter. Unexpected identifiers: this Your assignment seems to be backwards.