The following statements resulted in a compiler error. Fix it.
var weight = 102.5 // in pounds var str = "Your weight is " + weight + " pounds"
Use \(variable)
var weight = 102.5 // in pounds var str = "Your weight is \(weight) pounds"