Which one of these is the correct way to display the variable var, containing number 1 as value, to the console?(1 point)%0D%0AResponses%0D%0A%0D%0Aprint(‘var’)%0D%0Aprint(‘var’)%0D%0A%0D%0Aprint(var)%0D%0Aprint(var)%0D%0A%0D%0Aprint(‘1’)%0D%0Aprint(‘1’)%0D%0A%0D%0Aprint(1)