fix(curriculum): step 102 instructions clarification (#55897)

This commit is contained in:
Gagan Bhullar
2024-08-20 02:13:54 -06:00
committed by GitHub
parent 70be2fa4ee
commit 80700c4f95

View File

@@ -7,7 +7,7 @@ dashedName: step-102
# --description--
Create a `random` property. This property should use the first two numbers from an array to generate a random whole number. The range for this number starts at the smaller positive number (inclusive) among the first two numbers and ends just before the sum of these two numbers. Use the `Math.floor()` and `Math.random()` methods for the calculation.
Create a `random` property. This property should use the first two numbers from an array to generate a random whole number. The range for this number starts at the first number (inclusive) of the two and ends just before the sum of these two numbers. Use the `Math.floor()` and `Math.random()` methods for the calculation.
# --hints--