Block in programming in other to evaluate a condition such that it returns a boolean upon which a statement or action is then taken is the conditional block . Hence, Lonnie should use the conditional block.
The conditional block evaluates a condition and gives a True or False output which can the be used perform any statement or action of choice.
<u>Lonnie could use the block as follows</u> :
if (object_slammed_into_car) :
<em>Statement</em><em> </em>
else :
<em>Statement</em><em> </em>
The statement could be replaced with True, False values or any output of choice.
Learn more : brainly.com/question/25264145