
fort ciprian
1,234 Pointsim new please help
first time programing
// language
var name = "language"
var str = "swift"
str
1 Answer

Bruce Röttgers
18,211 PointsIt wants you to change the language variable to "Objective-C":
// Enter your code below
var language = "Swift"
language = "Objective-C"
Willem Ostn
992 PointsWillem Ostn
992 PointsHello fort ciprian You have misunderstood the question in the challenge. They are asking to make a variable called "language" with string called "Swift" Instead you have made 2 variables called "name" and "str" with strings "language" and "swift"
This should clarify what you have to do