What will be shown in the console if you run this code?
const user = { login: 'user', password: '1234' };
const user1 = user;
user1.password = 'qwerty';
console.log( user.password === user1.password );
Write your answer in one word in lowercase without any punctuation.