const numbers = [12, 34, 23, 56, 45, 67]; const maxNumber = Math.max(...numbers); console.log('Max Number:', maxNumber);