# list of employees:
{
 name: "Sue",
 age: 19,
 phone: {
  personal: "555-123-123",
  work: "555-456-456",
  ext: "2342"
 },
 privileges: "user",
 favorites: { artist: "Picasso", food: "pizza" },
 finished: [ 17, 3 ],
 badges: [ "blue", "black" ],
 points: [
    { points: 85, bonus: 20 },
    { points: 85, bonus: 10 }
 ]
},
{
 name: "Bob",
 age: 42,
 phone: {
  personal: "555-123-123",
  work: "555-456-456",
  ext: "7673"
 },
 privileges: "admin",
 favorites: { artist: "Miro", food: "meringue" },
 finished: [ 11, 25 ],
 badges: [ "green" ],
 points: [
    { points: 85, bonus: 20 },
    { points: 64, bonus: 12 }
 ]
},
{
 name: "Willy",
 age: 22,
 phone: {
  personal: "555-123-123",
  work: "555-456-456",
  ext: "8263"
 },
 privileges: "user",
 favorites: { artist: "Cassatt", food: "cake" },
 finished: [ 6 ],
 badges: [ "blue", "Picasso" ],
 points: [
    { points: 81, bonus: 8 },
    { points: 55, bonus: 20 }
 ]
},
{
 name: "John",
 age: 34,
 phone: {
  personal: "555-123-123",
  work: "555-456-456",
  ext: "2143"
 },
 privileges: "admin",
 favorites: { artist: "Chagall", food: "chocolate" },
 finished: [ 5, 11 ],
 badges: [ "Picasso", "black" ],
 points: [
    { points: 53, bonus: 15 },
    { points: 51, bonus: 15 }
 ]
},
{
 name: "Steve",
 age: 23,
 phone: {
  personal: "555-123-123",
  work: "555-456-456",
  ext: "8253"
 },
 privileges: "user",
 favorites: { artist: "Noguchi", food: "nougat" },
 finished: [ 14, 6 ],
 badges: [ "orange" ],
 points: [
    { points: 71, bonus: 20 }
 ]
},
{
 name: "Martin",
 age: 43,
 phone: {
  personal: "555-123-123",
  work: "555-456-456",
  ext: "5623"
 },
 privileges: "user",
 favorites: { food: "pizza", artist: "Picasso" },
 finished: [ 18, 12 ],
 badges: [ "black", "blue" ],
 points: [
    { points: 78, bonus: 8 },
    { points: 57, bonus: 7 }
 ]
}