
Flora Yasmin
485 PointsHow to do this
How do you do the second part of this?
// Enter your code below
var language = "Swift"
var = "Objective C"
2 Answers

Ryan Searle
10,605 PointsYou've declared language as a variable so you just need to give that variable a new value like this
var language = "Swift"
language = "Objective-C"

Randell Purington
9,992 PointsHello, You are close,
the first one is correct, but for the second you are missing a small part. var language = "Swift" var Swift = "Objective-C"
Randell Purington
9,992 PointsRandell Purington
9,992 Pointsvar Swift = "Objective-C"