Consider the following code snippet. What will be the output?
class Shape {
constructor() {
console.log('Creating a shape');
}
}
class Circle extends Shape {
constructor() {
super();
console.log('Creating a circle');
}
}
const circle = new Circle();