<t>Yes, but you need to declare it readonly instead of const:<br/>
<br/>
public static readonly string[] Titles = { "German", "Spanish", "Corrects", "Wrongs" };<br/>
<br/>
```<br/>
<br/>
The reason is that `const` can only be applied to a field whose value is known at compile-time. The array initializer you've shown is not a constant expression in C#, so it produces a compiler error.<br/>
<br/>
Declaring it `readonly` solves that problem because the value is not initialized until run-time (although it's guaranteed to have initialized before the first time that the array is used).<br/>
<br/>
Depending on what it is that you ultimately want to achieve, you might also consider declaring an enum:<br/>
<br/>
```<br/>
public enum Titles { German, Spanish, Corrects, Wrongs };<br/>
<br/>
```</t>