Modifying code to run multiple MLX90333 sensors with Arduino Micro

So something like this?

//*******Arduino MICRO SPI pins********
#define SS 17   //brown
#define SCK 15  //blue
#define MOSI 16  //SDI MOSI green
#define MISO 14  //SDO MISO yellow
#define SS1 2

int SSPins[] = {17 2};

byte dataBuffer[8];

void setup() {
  Serial.begin(9600); 
  SPI.begin;
  pinMode(SSPins, OUTPUT);
  pinMode(SCK, OUTPUT);
  pinMode(MOSI, OUTPUT);
  pinMode(MISO, INPUT);
}

Notice the pin mode part especially, I am not sure if that would be the right way to set the mode of all those two pins.