In some places you put spaces inside curly braces: ```js const message = `The sum of ${ input.join(`+`) } is ${ sum }` ``` but in others you don’t: ```js const summary = `${units}x ${name} ($${unitPrice}) = $${totalPrice}` ```