Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

JUSTIN SNELLING
571 Points```swift let firstValue = 2 let secondValue = 5 let product = "\(firstValue) "*" \(secondValue)" What is wrong?
I can't figure out what I'm doing wrong or what the next step is. Should I be using x code during these tutorials or not at all?
// Enter your code below
let firstValue = 2
let secondValue = 5
let product = "\(firstValue) "*" \(secondValue)"
2 Answers

Marlon Henry
6,885 PointsYou made the multiplication operator a String object let product = "(firstValue) "*" (secondValue)"
try
let firstValue = 2
let secondValue = 5
let product = "\(firstValue) * \(secondValue)"

JUSTIN SNELLING
571 PointsThank You! I think I may be messing up on the next step because I still can't advance... /Users/justin/Desktop/Screen Shot 2017-04-19 at 12.54.55 PM.png

Marlon Henry
6,885 PointsJUSTIN SNELLING No problem, but I can't see what you got going on in the next step, the screen shot does not load.