Form/dataset to show Logged user data

Hi,
why this isn’t working?
I get the proper email address in input3 but input 5 and input6 are blank.

import wixUsers from ‘wix-users’;
import wixLocation from ‘wix-location’;
import wixData from ‘wix-data’;
$w.onReady(function () {
let user = wixUsers.currentUser;

let userId = user.id; // “r5cme-6fem-485j-djre-4844c49”
let isLoggedIn = user.loggedIn; // true
let userRole = user.role; // “Member”

user.getEmail()
.then( (email) => {
let userEmail = email; // “user@something.com
$w(“#input3”).value = userEmail;
wixData.query(“ListeMembres”)

.eq(“adresseCourriel”, $w(“#input3”).value)
.find()
.then( (results) => {
console.log(results.items);

$w('#input5').value = results.items[0].fieldkey("nomFamille") 
$w('#input6').value = results.items[0].fieldkey("prenom") 

} );
} );

$w(“#button6”).enable();
$w(“#text52”).hide();
})