Property 'then' does not exist on type 'Element' in Wix error. HELP!!!!

The contactInfo should be part of the arguments to .register. The example there below. Watch the , {. That is missing in your code.

wixUsers.register(email, password, {
12    contactInfo: {
13        "firstName": firstName,
14        "lastName": lastName,
15        "phones": [phone]
16    }
17  } )
18  .then( (result) => {