Swift - Data Types
Examine the Swift code below and identify the issue related to string value type behavior:
var first = "Code" var second = first second += " Review" print(first)
