Using temp array on already fairly full UNO WiFi Rev2 [Closed]

So I think that I am not able to modify your code to actually use real analog inputs as it appears you are randomly generating values for demonstration purposes. I commented the part that randomly generates numeric values. But the data fields are all blank. It did
compile though!!! Which proves code that compiles can still be junk code. ...lol...

void loop() {
 int16_t tempSensor1 = analogRead(A0);
 int16_t tempSensor2 = analogRead(A1);
 int16_t tempSensor3 = analogRead(A2);

//  addHistoricalData(random(200), random(200), random(200));  // add a new random entry
 
  printHistoricalData();
  delay(2000);
}