-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
83 lines (81 loc) · 4.45 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const datas = [
["apple", "https://www.dictionary.com/browse/apple"],
["arrow", "https://www.dictionary.com/browse/arrow"],
["animal", "https://www.dictionary.com/browse/animal"],
["banana", "https://www.dictionary.com/browse/banana"],
["bird", "https://www.dictionary.com/browse/bird"],
["book", "https://www.dictionary.com/browse/book"],
["car", "https://www.dictionary.com/browse/car"],
["cat", "https://www.dictionary.com/browse/cat"],
["computer", "https://www.dictionary.com/browse/computer"],
["dog", "https://www.dictionary.com/browse/dog"],
["door", "https://www.dictionary.com/browse/door"],
["duck", "https://www.dictionary.com/browse/duck"],
["elephant", "https://www.dictionary.com/browse/elephant"],
["ear", "https://www.dictionary.com/browse/ear"],
["egg", "https://www.dictionary.com/browse/egg"],
["flower", "https://www.dictionary.com/browse/flower"],
["fire", "https://www.dictionary.com/browse/fire"],
["fish", "https://www.dictionary.com/browse/fish"],
["guitar", "https://www.dictionary.com/browse/guitar"],
["game", "https://www.dictionary.com/browse/game"],
["garden", "https://www.dictionary.com/browse/garden"],
["house", "https://www.dictionary.com/browse/house"],
["hat", "https://www.dictionary.com/browse/hat"],
["horse", "https://www.dictionary.com/browse/horse"],
["island", "https://www.dictionary.com/browse/island"],
["ice", "https://www.dictionary.com/browse/ice"],
["insect", "https://www.dictionary.com/browse/insect"],
["jacket", "https://www.dictionary.com/browse/jacket"],
["juice", "https://www.dictionary.com/browse/juice"],
["jungle", "https://www.dictionary.com/browse/jungle"],
["key", "https://www.dictionary.com/browse/key"],
["kite", "https://www.dictionary.com/browse/kite"],
["king", "https://www.dictionary.com/browse/king"],
["lion", "https://www.dictionary.com/browse/lion"],
["lake", "https://www.dictionary.com/browse/lake"],
["leaf", "https://www.dictionary.com/browse/leaf"],
["monkey", "https://www.dictionary.com/browse/monkey"],
["moon", "https://www.dictionary.com/browse/moon"],
["mountain", "https://www.dictionary.com/browse/mountain"],
["nest", "https://www.dictionary.com/browse/nest"],
["notebook", "https://www.dictionary.com/browse/notebook"],
["night", "https://www.dictionary.com/browse/night"],
["orange", "https://www.dictionary.com/browse/orange"],
["owl", "https://www.dictionary.com/browse/owl"],
["ocean", "https://www.dictionary.com/browse/ocean"],
["pencil", "https://www.dictionary.com/browse/pencil"],
["pizza", "https://www.dictionary.com/browse/pizza"],
["park", "https://www.dictionary.com/browse/park"],
["queen", "https://www.dictionary.com/browse/queen"],
["quill", "https://www.dictionary.com/browse/quill"],
["quilt", "https://www.dictionary.com/browse/quilt"],
["rabbit", "https://www.dictionary.com/browse/rabbit"],
["rain", "https://www.dictionary.com/browse/rain"],
["river", "https://www.dictionary.com/browse/river"],
["sun", "https://www.dictionary.com/browse/sun"],
["star", "https://www.dictionary.com/browse/star"],
["ship", "https://www.dictionary.com/browse/ship"],
["tree", "https://www.dictionary.com/browse/tree"],
["table", "https://www.dictionary.com/browse/table"],
["tiger", "https://www.dictionary.com/browse/tiger"],
["umbrella", "https://www.dictionary.com/browse/umbrella"],
["unicorn", "https://www.dictionary.com/browse/unicorn"],
["uniform", "https://www.dictionary.com/browse/uniform"],
["vase", "https://www.dictionary.com/browse/vase"],
["volcano", "https://www.dictionary.com/browse/volcano"],
["vegetable", "https://www.dictionary.com/browse/vegetable"],
["window", "https://www.dictionary.com/browse/window"],
["water", "https://www.dictionary.com/browse/water"],
["wolf", "https://www.dictionary.com/browse/wolf"],
["xylophone", "https://www.dictionary.com/browse/xylophone"],
["x-ray", "https://www.dictionary.com/browse/x-ray"],
["box", "https://www.dictionary.com/browse/box"],
["yarn", "https://www.dictionary.com/browse/yarn"],
["yacht", "https://www.dictionary.com/browse/yacht"],
["yogurt", "https://www.dictionary.com/browse/yogurt"],
["zebra", "https://www.dictionary.com/browse/zebra"],
["zoo", "https://www.dictionary.com/browse/zoo"],
["zero", "https://www.dictionary.com/browse/zero"],
];
export default datas;