What is the result of the following expression?
const square = x => { return x * x; }; console.log(square(5));
15
10
20
25