First, your variable name should be with another name other than the function name. and you have to use let or const to declare it, you can also use var but it’s highly recommended not to use var.
second, keep in mind that your function waiting for two arguments from you but here let area = rectangleArea(5 * 7);
you are passing just one because 5 * 7 will be computed to 35 as one argument, if you want to pass two arguments you will have to separate them with a comma , .
so your code will end with something like that:
function rectangleArea(width, height) {
let area = width * height;
return area;
}
let area1 = rectangleArea(5, 7);
console.log(area1); // print 35
=========================
Also please, there is a tool in Codecademy forums to refactor your code so it can be more readable, you can find it next to the upload tool or just use ctrl + shift + c as a shortcut. you can edit your post and use it.