Hi I'm having problems with this code in the code coach but in the code play ground no, and I don't know why
I'm doing a task The task is this: Sometimes it is very useful to set reminders to help you accomplish all your tasks. The program you are given takes an event as input. Complete the function reminder to take that event as an argument and output the corresponding message. input example workout output example You set a reminder about workout Use the + operator to concatenate string values ââtogether. eg console.log("JS is " + "fun!") will output "JS is fun". And this is the code that the task give me and in the one I'm working function main() { var eventExample = readLine(); // llama a la funciĂłn setReminder(eventExample); } function setReminder(eventExample) { console.log("You set a reminder about" + " " + eventExample ) } main(setReminder); For some reason it works like I said in the code play ground but not in the code coach when Im going to try the code, if somebody see why this is happening please tell me, i don't know if it' is the code or something else