we are able to inject code through the console ```js const userInput = prompt("Enter your input"); if (userInput) { try { eval(userInput); } catch(e) {} } ```
we are able to inject code through the console