#### Input Code ```js const x = ["1 + 1 is", `${1+1}`].join(' '); ``` #### Actual Output <!-- If an error is thrown, please provide the stack trace here --> ```js const x="1 + 1 is "; ``` #### Expected Output ```js const x="1 + 1 is 2"; ```
Input Code
Actual Output
Expected Output