I am trying to complete the excersize but I cant do anything. It wont show me the solution, it wont run, it wont say anything is right or wrong
// Write your code below
let bobsFollowers = [“Eric”, “Sam”, “Veronica”, “Stacy”];
let tinasFollowers = [“Jack”, “Sam”, “Stacy”];
let mutualFollowers = ;
for(let i = 0; i < bobsFollowers.length;i++ ){
for(let j = 0; j < tinasFollowers.length; i++){
if(bobsFollowers[i] === tinasFollowers[j]){
let mutualFollowers = mutualFollowers.push(bobsFollowers[i]);
}
}
}
https://www.codecademy.com/courses/introduction-to-javascript/lessons/loops/exercises/for-loops-iii