const check = (user) => `Good ${user}`

アロー関数を使わない場合、どう書けば良いでしょうか?


const check = function(user) {
 return ;
}