Serial print of arrays

Yes. Here is a code..

void setup() {
    Serial.begin(9600);
  }
 
void loop() {   
        
    float Theta[1001]  = {-1.454425, 0.002870, -0.060573, -0.017364, 0.046953, 0.050278, 0.090067, 0.118486...  };  // and so 1001 times
    int i;
    
    for (i = 0; i <= 10; i = i + 1) {
       Serial.println(Theta[i],6);
    }

    // This loop loops forever and does nothing
    while(true) { 
      continue; 
    } 
}