here is my code its giving the right output but detail number 3 is not passing.
export const isIdentical = (c,d) => {
const arr1 = [];
const arr2 = [];
for(let keys in c){
arr1.push(keys);
}
for(let keys in d){
arr2.push(keys);
}
if(JSON.stringify(arr1) === JSON.stringify(arr2)){
return true;
}else{
return false;
}
}
@Coderslang_Master please help.