1
00:00:00,180 --> 00:00:00,710
Project.

2
00:00:00,750 --> 00:00:05,340
We've got a few other ones that are dealing with words and scrambling the words, so the objective here

3
00:00:05,340 --> 00:00:09,120
is really straightforward where need to guess what the word is?

4
00:00:09,120 --> 00:00:13,790
We've got a word that's scrambled and an input area and a guess button.

5
00:00:13,800 --> 00:00:20,460
So you enter into the input, whatever you think the word is, press guess and we check to see if the

6
00:00:20,460 --> 00:00:21,360
guess is correct.

7
00:00:21,360 --> 00:00:23,580
And if it's correct, then you score properly.

8
00:00:23,820 --> 00:00:26,800
Otherwise, you've got to keep guessing until you get the word right.

9
00:00:27,030 --> 00:00:33,450
The words are coming from an array and it's gathered randomly using JavaScript, of course.

10
00:00:33,450 --> 00:00:41,730
And also we're going to be randomizing the characters of a particular string, so randomising a word,

11
00:00:42,000 --> 00:00:44,560
scrambling the word essentially using JavaScript.

12
00:00:44,580 --> 00:00:45,440
So let's check this out.

13
00:00:45,570 --> 00:00:49,930
Oh, and before we do, there's also a quick code hints here.

14
00:00:49,980 --> 00:00:52,680
So this is some of the code that's coming from the project.

15
00:00:52,680 --> 00:00:55,460
If you do want to try this out before you enter the section.

16
00:00:56,310 --> 00:01:00,240
So we have a start button, we click the start button, we get presented with the word.

17
00:01:00,360 --> 00:01:02,760
And actually, I already know what this word is, actually.

18
00:01:02,760 --> 00:01:05,820
Not all of them are because I obviously I created them.

19
00:01:06,000 --> 00:01:08,550
So this is an array and this one is, of course.

20
00:01:08,760 --> 00:01:10,890
So I'm doing really good at guessing these words.

21
00:01:11,070 --> 00:01:17,480
And if you get it wrong, then it's going to tell us wrong and it's going to ask us to guess again.

22
00:01:17,670 --> 00:01:19,770
So we keep guessing until we get the word right.

23
00:01:20,190 --> 00:01:27,540
So the directive here is to work with the RES and as well get more familiar with randomizing the character

24
00:01:27,540 --> 00:01:28,680
order of a string.
