以下のmapメソッドを使った配列の表示において、`key`属性が必要な理由として正しいものはどれですか? ```jsx {items.map((item, index) => ( <li key={index}>{item}</li> ))} ```