char arr[]={"hello world"};
void setup() {
pinMode(9, OUTPUT);// put your setup code here, to run once:
}
void loop() {
digitalWrite(9, HIGH);
Serial.println(arr);
delay(100);
digitalWrite(9, LOW);
delay(100);// put your main code here, to run repeatedly:
}