Bug in Node.js newly updated course

Tthe following information:

Topic Title: Typo in newly updated Node.js course.

For the Post:

Summery of the report: There is a typo in the code.
Course URL: https://www.codecademy.com/courses/learn-node-js/lessons/setting-up-a-server-with-http/exercises/the-url-module
Steps to Reproduce: Use console.log to reproduce as shown in the screenshots.
The code to test:

const createdUrl = new URL('https://www.example.com');
createdUrl.pathname = '/p/a/t/h';
createdUrl.search = '?query=string';

console.log(createUrl.toString());

How to fix: Change createUrl.toString(); to createdUrl.toString();.
Please attach screenshots:
Untitled