Neither of those are string interpolation, and both are invalid code (watch out with forum formatting)
string interpolation is replacing placeholders in the string with other strings
const bobs_age = 5;
const s = `bob is ${bobs_age} years old`;
One sends two values to console.log, the other sends a single string