You forgot to make servosPins and servosPosition arrays. Change this:
const int servosPins = {9};
const int servosPosition = {0};
to this:
const int servosPins[] = {9};
const int servosPosition[] = {0};
You forgot to make servosPins and servosPosition arrays. Change this:
const int servosPins = {9};
const int servosPosition = {0};
to this:
const int servosPins[] = {9};
const int servosPosition[] = {0};