Describe the incorrectness
The analyzer commented on my solution that it could be helpful to use string interpolation. In the example it provides it show this: "Hello there \${firstName}, I will give you \${calculateInventory()} apples.". However, this does not work. The only way I get it to work is by using backticks (`) instead of single or double quotes. Even when escaping the $, running yarn test fails.
Which exercise
Two Fer
Source file(s)
Expected analysis
I expect the example to use backticks instead of double quotes.
Additional context
Screenshot of my code and the output of running yarn test

Describe the incorrectness
The analyzer commented on my solution that it could be helpful to use string interpolation. In the example it provides it show this:
"Hello there \${firstName}, I will give you \${calculateInventory()} apples.". However, this does not work. The only way I get it to work is by using backticks (`) instead of single or double quotes. Even when escaping the $, runningyarn testfails.Which exercise
Two Fer
Source file(s)
Expected analysis
I expect the example to use backticks instead of double quotes.
Additional context

Screenshot of my code and the output of running
yarn test