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 An Introduction to Swift Programming Working With Variables

how to set variable language

i keep getting a alert sign that says Bummer: make sure your variable has a language

variables.swift
// Enter your code below
//: Playground - noun: a place where people can play

import UIKit

var str = "Hello, playground"
str

str="hello,World!"
str

var number = 10
number

number = 20

2 Answers

Magnus Hållberg
Magnus Hållberg
17,232 Points

I dont know what code you are submitting to the challenge but the one in this post is nothing like the challenge requirements. The challenge tells you to create a variable named "language" and assign the string "Swift" to it. You should then update that string to "Objective-C". Thats it. The challenges are picky on spelling in both variable names and string values, so even if you do the right thing technically but use other names you will not pas the challenge.

The challenge you are referring to asks you to create one variable, assign it to a string, then assign a different string to the variable.

var language = "Swift"
language = "Objective-C"