What does Node 24 print for this minimal core Wasm module?

from WebAssembly containers
Node 24 beginner 2 min

What does Node 24 print for this minimal core Wasm module?

JavaScript
const bytes = Uint8Array.from([
  0x00, 0x61, 0x73, 0x6d,
  0x01, 0x00, 0x00, 0x00,
]);
const module = new WebAssembly.Module(bytes);

console.log(WebAssembly.validate(bytes));
console.log(WebAssembly.Module.imports(module).length);
Open in playground
Report an error