Code QuizBeginner

The void Type

Learn why a `void` function should not return a value.

Codetypescript
function logMessage(msg: string): void {
  return msg.length;
}

What is the bug in this code?