How to Serial.print() an Array?

my code is that.

int example[]={1,3,5};

void setup() {
  
  Serial.begin(9600);
}

void loop() {
  
Serial.println(example);
delay(1000);
}