var first = 5; var second = 7; var third = first; var first = second; console.log(first) console.log(third) //Output: 7,5