// Find the bug: Output formatting error
void setup() {
Serial.begin(115200);
}
void loop() {
int count = 0;
while (count < 5) {
Serial.print("Count: "); // BUG: Should be println()
Serial.print(count); // BUG: Should be println()
count = count + 1;
}
delay(1000);
}