From aeabf4bf9bd550fb818c650c8f429387f9009095 Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Sun, 21 Jan 2018 13:08:31 +0100 Subject: [PATCH] Added instruction to correct task. --- 1-js/05-data-types/02-number/9-random-int-min-max/task.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/1-js/05-data-types/02-number/9-random-int-min-max/task.md b/1-js/05-data-types/02-number/9-random-int-min-max/task.md index 71d83f01..29341b2a 100644 --- a/1-js/05-data-types/02-number/9-random-int-min-max/task.md +++ b/1-js/05-data-types/02-number/9-random-int-min-max/task.md @@ -15,4 +15,6 @@ Examples of its work: alert( random(1, 5) ); // 1 alert( random(1, 5) ); // 3 alert( random(1, 5) ); // 5 -``` \ No newline at end of file +``` + +You can use the solution of the [previous task](info:task/random-min-max) as the base.