Define a function named square(n) that accepts a number n and returns its square (n * n). Then call square(7) and print the returned result.
square(n)
n
n * n
square(7)
Remember to use the `return` keyword instead of just calculating inside the function.
Press Ctrl+Enter or click "Run Code" to execute your solution in the browser.