Errors with my char array

Hello

I am trying to make a char array in C#. I looked the code up online when I got some errors with my code. The code is char[] CarName = new char[] { 'CelicaGT4', 'HondaNSX', 'NissanR34'};

I get 6 errors with this code. I get error CS1012: Too many characters in character literal 3 times and error CS1525: Unexpected symbol `’ 3 times as well.

Thank you in advance

A char in C# is a single Unicode character, ‘too many characters’ means you’ve written more than one. You would want to use an array of strings instead.