### Description We should have a code action that replaces string concatenation, e.g. ```swift "[" + key + ": " + value + "]" ``` with interpolation: ```swift "[\(key): \(value)]" ```