MATLAB - String Handling
Identify the error in this MATLAB code snippet:
name = 'John';
greeting = strcat('Hello, ', name, '!');
message = greeting + ' Welcome!';
