VL6180 Sensor

Hallo
wo ist der fehler hier dirn finde ihn nicht?

#include <Wire.h>

#include <VL6180x.h>

VL6180x sensor(VL6180X_ADDRESS);
void setup() {
Serial.begin(115200); // put your setup code here, to run once:
Wire.begin();
delay(1000);
if(sensor.VL6180xInit() != 0){
Serial.println("FAILED TO INITALIZE");

}

sensor.VL6180xDefautSettings();

void loop() {
Serial.print("Umgebungslicht (Lux) = ");
// put your main code here, to run repeatedly:
Serial.println( sensor.getAmbientLight );

Serial.print("Abstandsmessung (mm) = ");
Serial.println( sensor.getDistance() );

delay(2);
};

};

danke