the const maxResults = 5; is not an object
when defin const optionsSSDMobileNet you have to send it objects.
example:
```JS
new faceapi.SsdMobilenetv1Options({ minConfidence: 0.5, maxResults: 3});
```
or rather
```JS
const optionsSSDMobileNet = new faceapi.SsdMobilenetv1Options({ minConfidence: minScore, maxResults: maxResults });
```