Hi Juanita:
So a quick javascript tutorial and another mia copa.
When you use strings in javascript you can join them using the ‘+’ character. This is useful because you can join strings together with information in const, var and let variables.
So
let i = 1;
let j = 2;
console.log('The calculation '+i+' + '+j+' = '+(i+j)); // Should print "The calculation 1 + 2 = 3"
Now the problem with the line of code I gave you is that it is missing a + . If you look at the screen dump you have shared the last section of red text is showing you where the error is
So
'Profile records returned for '+userEmail+' = 'results.items.length
should be
'Profile records returned for '+userEmail+' = '+results.items.length
This should help you out.
Cheers
