Someone has crashed the code by initialising numbers as strings.

Fix the initialization of variables x and y to make sure the number 4 is logged to the console.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

solution.js

/**
 * Someone has crashed the code by initialising numbers as strings.
 *
 * Fix the initialization of variables x and y to make sure the number 4 is logged to the console.
 * */

let x = '2';
let y = '2';
let z = x + y;

console.log(z);