What will be printed to the console when executing the following code?
function Circle(radius) {
this.radius = radius;
this.area = function() {
return Math.PI * Math.pow(this.radius, 2);
};
}
const circle1 = new Circle(5);
console.log(circle1.area());