Take a look at the 2 lines below.
foo = ({ data: { one, two }}) => {alert(one.type); alert(two.type);}
foo( /* What goes here*/ );
What would I put in the () on the second line to alert "Hello" in the first alert() and "World" in the second alert()?