以下のコードで、Enterキーが押された時のみ処理を実行したい場合の条件文はどれですか? ```jsx const handleKeyPress = (event) => { if (/* 条件 */) { alert('Enterキーが押されました!'); } }; ```