@matheussilva08 added like this, added surrounding code for context. Can confirm it’s working on my side.
<?php
const BLOCKJS = 'gutenberg/build/block.js';
const BLOCKCSS = 'gutenberg/build/block.css';
function articulate_enqueue_gutenberg_scripts() {
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'materializejs', WP_QUIZ_EMBEDER_PLUGIN_URL . MATERIALIZEJS, array( 'jquery', 'jquery-ui-core', 'jquery-ui-tooltip' ) );
// Enqueue the regenerator-runtime library from CDN
wp_enqueue_script( 'regenerator-runtime', 'https://cdnjs.cloudflare.com/ajax/libs/regenerator-runtime/0.13.7/runtime.min.js', array(), '0.13.7', true );
wp_enqueue_script( 'articulate-gutenberg-block', WP_QUIZ_EMBEDER_PLUGIN_URL . BLOCKJS, array( 'wp-api', 'wp-i18n', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-editor', 'wp-element', 'regenerator-runtime' ), filemtime( WP_QUIZ_EMBEDER_PLUGIN_DIR . '/gutenberg/build/block.js' ), true );