Найдите NAN в индексе возврата JS

let index = [1,3,4,'hello',NaN,3].findIndex(Number.isNaN)
console.log(index)
Abror