If you have this code: ```js const sum = (a, b) => a + b; ``` You should be able to add a console.log before or after your cursor: ```js const sum = (a, b) => console.log(a) || a + b; ``` This is related to #3
If you have this code:
You should be able to add a console.log before or after your cursor:
This is related to #3