I think this way is better: ```js 'use strict'; function greet(msg, name) { msg = msg || "hello"; name = name || "world"; console.log(msg, name); } greet(); // -> hello world greet('hey'); // -> hey world ```