Phone number input from serial monitor

Good day everyone,

I want to input phone numbers (at least 10) using serial monitor and store them in the array
on the first line of the code. How will I manipulate the code below and make it work?

char *phone_no[]={"9xxxxxxxxx","9xxxxxxxxx", "9xxxxxxxxx", "9xxxxxxxxx", "9xxxxxxxxx", "9xxxxxxxxx", "9xxxxxxxxx", "9xxxxxxxxx", "9xxxxxxxxx", "9xxxxxxxxx" };}

void setup() {
Serial.begin(115200);
delay(300);

for (int i = 0; i<=9; i++){
Serial.println("AT+CMGF=1");
delay(2000);
Serial.print("AT+CMGS="");
Serial.print(phone_no*);*
Serial.write(0x22);
*Serial.write(0x0D); // hex equivalent of Carraige return *
Serial.write(0x0A); // hex equivalent of newline
delay(2000);
Serial.print("Welcome!");
delay(2000);
Serial.println (char(26));//the ASCII code of the ctrl+z is 26
Serial.println("message sent!");
}
Thank you in advance.

Have a look at the examples in Serial Input Basics - simple reliable ways to receive data.

...R