Example: ``` def test(a, b, c = []) puts "a=#{a}, b=#{b}, c=#{c}" end ``` Command Line: ``` test 1 2 3 4 5 ``` Expected: ``` "a=1, b=2, c=[3,4,5]" ``` Actual: ``` "a=1, b=2, c=3" ```