-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfake_user.js
More file actions
34 lines (29 loc) · 728 Bytes
/
fake_user.js
File metadata and controls
34 lines (29 loc) · 728 Bytes
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
const person = {
'firstname': 'Uyi',
'lastname': 'Omofonmwan',
'email': 'AfricanKing@gmail.com',
'username': 'ACompleteNoobSmoke',
'password': 'uyi',
'console': 'playstation',
'avatarImage': ''
}
const person2 = {
'firstname': 'Adedayo',
'lastname': 'Uwensuyi',
'email': 'supposani617@yahoo.com',
'username': 'onehpee',
'password': 'ade',
'console': 'xbox',
'avatarImage': ''
}
const person3 = {
'firstname': 'Ajinboye',
'lastname': 'Uwensuyi',
'email': 'auwensuyi@outlook.com',
'username': 'Prince Aji',
'password': 'boye',
'console': 'pc',
'avatarImage': ''
}
const peopleArray = [person, person2, person3];
module.exports = peopleArray;