Question from the Object Oriented Programming test

Is the following code valid? class Person { constructor(name, age) { this.name = name; this.age = age; } } const person = new Person('John', 20); console.log(person.name); console.log(person.age);