```js const myFunction = (x) => { const i = 15; for(let j = 0; j < i; j++) { console.log(j); } return; } ``` --> 