Can you arrange this code so myBoolean is true when it's displayed in the console?

Yup! We declare myBoolean and give it a value. Then we declare and initialize yourBoolean and assign the inverse value of yourBoolean to myBoolean. Finally, we pass myBoolean to print().

Close! We declare myBoolean and give it a value. Then we declare and initialize yourBoolean and assign the inverse value of yourBoolean to myBoolean. Finally, we pass myBoolean to print().