### No output for second numbers `console.log('foo', 123)` `console.log('foo', 123, 456)` Output: `foo` and `foo` Expected: `foo 123` and ` foo 123 456` ### No space with multiple strings `console.log('foo', 'bar)` Output: `foobar` Expected: `foo bar`