You have hard coded the square of 4. But your function needs to be able to return the square of any number. When you call the square function, you pass in the number you want to square, like this: console.log(square(3)), which should return 9, right? (3 * 3) So your function needs to use the param parameter to return the square.