// Data


const account1 = {
  owner: 'Aditya Narayan Tiwari',
  movements: [200, 450, -400, 3000, -650, -130, 70, 1300],
  interestRate: 1.2, // %
  pin: 1111,
};
//username: ant
const account2 = {
  owner: 'Rishabh Singh',
  movements: [5000, 3400, -150, -790, -3210, -1000, 8500, -30],
  interestRate: 1.5,
  pin: 2222,
};
//username: rs
const account3 = {
  owner: 'Dhruv Adavadkar',
  movements: [200, -200, 340, -300, -20, 50, 400, -460],
  interestRate: 0.7,
  pin: 3333,
};
//username: da