Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift Basics Swift Types Recap: Swift Types

```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?

types.swift
// Enter your code below
let firstValue = 2
let secondValue = 5

let product = "\(firstValue) "*" \(secondValue)"

2 Answers

You made the multiplication operator a String object let product = "(firstValue) "*" (secondValue)"

try

let firstValue = 2
let secondValue = 5
let product = "\(firstValue) * \(secondValue)"

Thank 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

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