Clarify instructions (#37735)

Closes #37734
This commit is contained in:
allison-strandberg
2019-11-11 10:48:51 -05:00
committed by Oliver Eyton-Williams
parent 385287838e
commit 2c5453e3bd

View File

@ -33,7 +33,7 @@ return "No";
## Instructions
<section id='instructions'>
Combine the two if statements into one statement which will return <code>"Yes"</code> if <code>val</code> is less than or equal to <code>50</code> and greater than or equal to <code>25</code>. Otherwise, will return <code>"No"</code>.
Replace the two if statements with one statement, using the && operator, which will return <code>"Yes"</code> if <code>val</code> is less than or equal to <code>50</code> and greater than or equal to <code>25</code>. Otherwise, will return <code>"No"</code>.
</section>
## Tests