-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwords.js
52 lines (52 loc) · 1.98 KB
/
words.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
const words = [
{ noun: "Haus", article: "das" },
{ noun: "Baum", article: "der" },
{ noun: "Blume", article: "die" },
{ noun: "Auto", article: "das" },
{ noun: "Buch", article: "das" },
{ noun: "Frau", article: "die" },
{ noun: "Mann", article: "der" },
{ noun: "Stadt", article: "die" },
{ noun: "Land", article: "das" },
{ noun: "Kind", article: "das" },
{ noun: "Tier", article: "das" },
{ noun: "Fluss", article: "der" },
{ noun: "Meer", article: "das" },
{ noun: "Berg", article: "der" },
{ noun: "Wald", article: "der" },
{ noun: "Weg", article: "der" },
{ noun: "Tisch", article: "der" },
{ noun: "Stuhl", article: "der" },
{ noun: "Fenster", article: "das" },
{ noun: "Tür", article: "die" },
{ noun: "Schule", article: "die" },
{ noun: "Universität", article: "die" },
{ noun: "Küche", article: "die" },
{ noun: "Zimmer", article: "das" },
{ noun: "Bild", article: "das" },
{ noun: "Foto", article: "das" },
{ noun: "Brot", article: "das" },
{ noun: "Milch", article: "die" },
{ noun: "Wasser", article: "das" },
{ noun: "Saft", article: "der" },
{ noun: "Kaffee", article: "der" },
{ noun: "Tee", article: "der" },
{ noun: "Obst", article: "das" },
{ noun: "Gemüse", article: "das" },
{ noun: "Fleisch", article: "das" },
{ noun: "Fisch", article: "der" },
{ noun: "Vogel", article: "der" },
{ noun: "Hund", article: "der" },
{ noun: "Katze", article: "die" },
{ noun: "Maus", article: "die" },
{ noun: "Pferd", article: "das" },
{ noun: "Kuh", article: "die" },
{ noun: "Schwein", article: "das" },
{ noun: "Straße", article: "die" },
{ noun: "Brücke", article: "die" },
{ noun: "Bahnhof", article: "der" },
{ noun: "Flughafen", article: "der" },
{ noun: "Park", article: "der" },
{ noun: "Museum", article: "das" },
{ noun: "Theater", article: "das" }
];