Moving string position in array

for (int i = 1; i < 51; i++){
  char sendMessage[20] = "Alarm Message - ";
   sendMessage = sendMessage + i;

I know what this is doing, but I'm not clear what it is you intend.