/* hello-wilder.js */
// Define some variables
const movie = 'The social network';
let year = '2010';
const realisator = 'David Fincher';
const message = movie + ', réalisé par ' + realisator + ', est sorti en ' + 2010 ;
// Display a popup
alert(message);