Hello all,
May I know what is the error for [j] and how to fix it ?
It is advisable to include a link to the exercise. You are referring to Step 4 of the exercise Nested Loops.
You are missing a semi-colon.
//
// You wrote:
for (let i = 0; i < bobsFollowers.length i++) {
//
// It should be:
for (let i = 0; i < bobsFollowers.length; i++) {
Thank you so MUCH !!!
You always answereed my questions.
Appreciated it.