Looks good, but [23 + MAX_PLAYER_NAME] is very uncommon, better to use new string[128] but I think it is unique
The reason for using "23 + MAX_PLAYER_NAME" and not 128 is because the smaller array sizes, the better. 128 is way too much for our small message in this tutorial. Allways make arrays as small as possible.