// Question: Do pins above 31 work in Wokwi ?
// Answer: Yes

#define NUM_PINS 8
const int pins[NUM_PINS] = {13, 2, 19, 25, 35, 45, 53, A11 };

void setup() 
{
  for( int i=0; i<NUM_PINS; i++)
    pinMode(pins[i], OUTPUT);
}

void loop() 
{
  for( int i=0; i<NUM_PINS; i++)
  {
    digitalWrite(pins[i], HIGH);
  }
  delay(200);
  for( int i=0; i<NUM_PINS; i++)
  {
    digitalWrite(pins[i], LOW);
  }
  delay(200);

}