Consider adding the refactoring option to turn a string concatenation ```ts console.log("My name is " + firstName + " " + lastName + "."); ``` to ES2015 template literals: ```ts console.log(`My name is ${firstName} ${lastName}.`); ```