Mutations can not pass 1st test

I have the same problem but here I don’t see any useful comment to know why? my code is This way:

function mutation(arr) {
  
  var firstString= arr[0].toLowerCase(); 
  var secondString= arr[1].toLowerCase();
  
  for (i=0; i<secondString.length; i++){
      if(firstString.indexOf(secondString[i]) === -1){
            return false;
          }else{
            return true;
          }
    }
} 

mutation(["hello", "hey"]);

I just went through this issue and randell helped me understand it in another thread. I would link the thread, but it gives the answer away. Your are incredibly close. Like randell mentioned, take a look at your returns- it needs to be able to finish iterating over all letters in the string before returning true.