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

Sincere Allen
Sincere Allen
359 Points

somebody please help I've written several different examples and still can't get it what am I doing wrong?

as title reads I'm stumped

types.swift
// Enter your code below
let firstValue = 2
let secondValue = 4
let product = firstValue * secondValue 
let output = "the product of  \(firstValue) times \(secondValue) is \(product) "
Sincere Allen
Sincere Allen
359 Points

I even ran it in Xcode and the format is exactly as shows in the question this has to be a problem with the website itself

1 Answer

The error you receive is: Bummer: The format of your output string doesn't match the requirements listed. Double check the example given in the directions!

Your output should look like this:

The product of 2 times 4 is 8

What you have is this:

the product of  2 times 4 is 8

Things to fix:

1) Capitalize the T in The

2) Remove the extra space (there are two) before \(firstValue)

3) Remove the trailing space after \(product)

Sincere Allen
Sincere Allen
359 Points

wow so specific; gonna need to up my attention to detail thanks!