配列から最大値を見つけるコードで、適切な初期値の設定方法はどれですか? ```javascript const scores = [85, 92, 78, 96, 88]; let max = ______; for (let i = 1; i < scores.length; i++) { if (scores[i] > max) { max = scores[i]; } } ```