以下のコードで、JSONデータの特定のプロパティにアクセスする際の正しい記述はどれですか? ```javascript fetch('api-url') .then(response => response.json()) .then(user => { // ユーザーの名前を表示したい }); ```