The second task is harder than the first. And there are also some things that you may be unfamiliar with.
Don’t stress it. You just need to change the output string.
Start by running the code. Then make the necessary adjustments.
Run the code once again and when the output is correct, submit the task for verification.

The program should print the string I will become a JS developer in ** current year **!
Make sure to substitute the ** current year ** section with the actual year and remove the quotes.
Example output: I will become a JS developer in 2025!

P.S. Make the minimum amount of changes to the program!
If you have problems with this task,
please check out the FAQ at learn.coderslang.com

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

solution.js

/**
 * Fix the printDailyAffirmation function.
 *
 * It should print the string "I will become a JS developer in ** current year **!"
 *
 * Make sure to substitute the `** current year **` section with the actual year and remove the quotes.
 *
 * Example output: I will become a JS developer in 2325!
 *
 * P.S. Make the minimum amount of changes to the program!
 * */

console.log(`One day I will become a JS developer...`);